Project Title: Housing Price Prediction

YHills Internship Project

</center> By: Aashish Bansal
Email: aashish22bansal@gmail.com

In [ ]:
from google.colab import drive
drive.mount('/content/drive')
Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True).

Import necessary libraries¶

In [ ]:
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
pd.set_option('display.max_rows', None)

Read data files¶

In [ ]:
training_data = pd.read_csv("/content/drive/MyDrive/Project - YHills - House Price Prediction/dataset/HousePrices.csv")
In [ ]:
testing_data = pd.read_csv("/content/drive/MyDrive/Project - YHills - House Price Prediction/dataset/test.csv")
In [ ]:
training_data.head()
Out[ ]:
Id MSSubClass MSZoning LotFrontage LotArea Street Alley LotShape LandContour Utilities LotConfig LandSlope Neighborhood Condition1 Condition2 BldgType HouseStyle OverallQual OverallCond YearBuilt YearRemodAdd RoofStyle RoofMatl Exterior1st Exterior2nd MasVnrType MasVnrArea ExterQual ExterCond Foundation BsmtQual BsmtCond BsmtExposure BsmtFinType1 BsmtFinSF1 BsmtFinType2 BsmtFinSF2 BsmtUnfSF TotalBsmtSF Heating ... CentralAir Electrical 1stFlrSF 2ndFlrSF LowQualFinSF GrLivArea BsmtFullBath BsmtHalfBath FullBath HalfBath BedroomAbvGr KitchenAbvGr KitchenQual TotRmsAbvGrd Functional Fireplaces FireplaceQu GarageType GarageYrBlt GarageFinish GarageCars GarageArea GarageQual GarageCond PavedDrive WoodDeckSF OpenPorchSF EnclosedPorch 3SsnPorch ScreenPorch PoolArea PoolQC Fence MiscFeature MiscVal MoSold YrSold SaleType SaleCondition SalePrice
0 1 60 RL 65.0 8450 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 196.0 Gd TA PConc Gd TA No GLQ 706 Unf 0 150 856 GasA ... Y SBrkr 856 854 0 1710 1 0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 2003.0 RFn 2 548 TA TA Y 0 61 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal 208500
1 2 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub FR2 Gtl Veenker Feedr Norm 1Fam 1Story 6 8 1976 1976 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Gd TA Gd ALQ 978 Unf 0 284 1262 GasA ... Y SBrkr 1262 0 0 1262 0 1 2 0 3 1 TA 6 Typ 1 TA Attchd 1976.0 RFn 2 460 TA TA Y 298 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 181500
2 3 60 RL 68.0 11250 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2001 2002 Gable CompShg VinylSd VinylSd BrkFace 162.0 Gd TA PConc Gd TA Mn GLQ 486 Unf 0 434 920 GasA ... Y SBrkr 920 866 0 1786 1 0 2 1 3 1 Gd 6 Typ 1 TA Attchd 2001.0 RFn 2 608 TA TA Y 0 42 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal 223500
3 4 70 RL 60.0 9550 Pave NaN IR1 Lvl AllPub Corner Gtl Crawfor Norm Norm 1Fam 2Story 7 5 1915 1970 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA BrkTil TA Gd No ALQ 216 Unf 0 540 756 GasA ... Y SBrkr 961 756 0 1717 1 0 1 0 3 1 Gd 7 Typ 1 Gd Detchd 1998.0 Unf 3 642 TA TA Y 0 35 272 0 0 0 NaN NaN NaN 0 2 2006 WD Abnorml 140000
4 5 60 RL 84.0 14260 Pave NaN IR1 Lvl AllPub FR2 Gtl NoRidge Norm Norm 1Fam 2Story 8 5 2000 2000 Gable CompShg VinylSd VinylSd BrkFace 350.0 Gd TA PConc Gd TA Av GLQ 655 Unf 0 490 1145 GasA ... Y SBrkr 1145 1053 0 2198 1 0 2 1 4 1 Gd 9 Typ 1 TA Attchd 2000.0 RFn 3 836 TA TA Y 192 84 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal 250000

5 rows × 81 columns

In [ ]:
testing_data.head()
Out[ ]:
Id MSSubClass MSZoning LotFrontage LotArea Street Alley LotShape LandContour Utilities LotConfig LandSlope Neighborhood Condition1 Condition2 BldgType HouseStyle OverallQual OverallCond YearBuilt YearRemodAdd RoofStyle RoofMatl Exterior1st Exterior2nd MasVnrType MasVnrArea ExterQual ExterCond Foundation BsmtQual BsmtCond BsmtExposure BsmtFinType1 BsmtFinSF1 BsmtFinType2 BsmtFinSF2 BsmtUnfSF TotalBsmtSF Heating HeatingQC CentralAir Electrical 1stFlrSF 2ndFlrSF LowQualFinSF GrLivArea BsmtFullBath BsmtHalfBath FullBath HalfBath BedroomAbvGr KitchenAbvGr KitchenQual TotRmsAbvGrd Functional Fireplaces FireplaceQu GarageType GarageYrBlt GarageFinish GarageCars GarageArea GarageQual GarageCond PavedDrive WoodDeckSF OpenPorchSF EnclosedPorch 3SsnPorch ScreenPorch PoolArea PoolQC Fence MiscFeature MiscVal MoSold YrSold SaleType SaleCondition
0 1461 20 RH 80.0 11622 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam 1Story 5 6 1961 1961 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No Rec 468.0 LwQ 144.0 270.0 882.0 GasA TA Y SBrkr 896 0 0 896 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1961.0 Unf 1.0 730.0 TA TA Y 140 0 0 0 120 0 NaN MnPrv NaN 0 6 2010 WD Normal
1 1462 20 RL 81.0 14267 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 6 1958 1958 Hip CompShg Wd Sdng Wd Sdng BrkFace 108.0 TA TA CBlock TA TA No ALQ 923.0 Unf 0.0 406.0 1329.0 GasA TA Y SBrkr 1329 0 0 1329 0.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN Attchd 1958.0 Unf 1.0 312.0 TA TA Y 393 36 0 0 0 0 NaN NaN Gar2 12500 6 2010 WD Normal
2 1463 60 RL 74.0 13830 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 5 5 1997 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No GLQ 791.0 Unf 0.0 137.0 928.0 GasA Gd Y SBrkr 928 701 0 1629 0.0 0.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1997.0 Fin 2.0 482.0 TA TA Y 212 34 0 0 0 0 NaN MnPrv NaN 0 3 2010 WD Normal
3 1464 60 RL 78.0 9978 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 6 1998 1998 Gable CompShg VinylSd VinylSd BrkFace 20.0 TA TA PConc TA TA No GLQ 602.0 Unf 0.0 324.0 926.0 GasA Ex Y SBrkr 926 678 0 1604 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 1998.0 Fin 2.0 470.0 TA TA Y 360 36 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal
4 1465 120 RL 43.0 5005 Pave NaN IR1 HLS AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 1992 1992 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA No ALQ 263.0 Unf 0.0 1017.0 1280.0 GasA Ex Y SBrkr 1280 0 0 1280 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 1992.0 RFn 2.0 506.0 TA TA Y 0 82 0 0 144 0 NaN NaN NaN 0 1 2010 WD Normal
In [ ]:
training_data.describe()
Out[ ]:
Id MSSubClass LotFrontage LotArea OverallQual OverallCond YearBuilt YearRemodAdd MasVnrArea BsmtFinSF1 BsmtFinSF2 BsmtUnfSF TotalBsmtSF 1stFlrSF 2ndFlrSF LowQualFinSF GrLivArea BsmtFullBath BsmtHalfBath FullBath HalfBath BedroomAbvGr KitchenAbvGr TotRmsAbvGrd Fireplaces GarageYrBlt GarageCars GarageArea WoodDeckSF OpenPorchSF EnclosedPorch 3SsnPorch ScreenPorch PoolArea MiscVal MoSold YrSold SalePrice
count 1460.000000 1460.000000 1201.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1452.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1379.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000
mean 730.500000 56.897260 70.049958 10516.828082 6.099315 5.575342 1971.267808 1984.865753 103.685262 443.639726 46.549315 567.240411 1057.429452 1162.626712 346.992466 5.844521 1515.463699 0.425342 0.057534 1.565068 0.382877 2.866438 1.046575 6.517808 0.613014 1978.506164 1.767123 472.980137 94.244521 46.660274 21.954110 3.409589 15.060959 2.758904 43.489041 6.321918 2007.815753 180921.195890
std 421.610009 42.300571 24.284752 9981.264932 1.382997 1.112799 30.202904 20.645407 181.066207 456.098091 161.319273 441.866955 438.705324 386.587738 436.528436 48.623081 525.480383 0.518911 0.238753 0.550916 0.502885 0.815778 0.220338 1.625393 0.644666 24.689725 0.747315 213.804841 125.338794 66.256028 61.119149 29.317331 55.757415 40.177307 496.123024 2.703626 1.328095 79442.502883
min 1.000000 20.000000 21.000000 1300.000000 1.000000 1.000000 1872.000000 1950.000000 0.000000 0.000000 0.000000 0.000000 0.000000 334.000000 0.000000 0.000000 334.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.000000 0.000000 1900.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 2006.000000 34900.000000
25% 365.750000 20.000000 59.000000 7553.500000 5.000000 5.000000 1954.000000 1967.000000 0.000000 0.000000 0.000000 223.000000 795.750000 882.000000 0.000000 0.000000 1129.500000 0.000000 0.000000 1.000000 0.000000 2.000000 1.000000 5.000000 0.000000 1961.000000 1.000000 334.500000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.000000 2007.000000 129975.000000
50% 730.500000 50.000000 69.000000 9478.500000 6.000000 5.000000 1973.000000 1994.000000 0.000000 383.500000 0.000000 477.500000 991.500000 1087.000000 0.000000 0.000000 1464.000000 0.000000 0.000000 2.000000 0.000000 3.000000 1.000000 6.000000 1.000000 1980.000000 2.000000 480.000000 0.000000 25.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.000000 2008.000000 163000.000000
75% 1095.250000 70.000000 80.000000 11601.500000 7.000000 6.000000 2000.000000 2004.000000 166.000000 712.250000 0.000000 808.000000 1298.250000 1391.250000 728.000000 0.000000 1776.750000 1.000000 0.000000 2.000000 1.000000 3.000000 1.000000 7.000000 1.000000 2002.000000 2.000000 576.000000 168.000000 68.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.000000 2009.000000 214000.000000
max 1460.000000 190.000000 313.000000 215245.000000 10.000000 9.000000 2010.000000 2010.000000 1600.000000 5644.000000 1474.000000 2336.000000 6110.000000 4692.000000 2065.000000 572.000000 5642.000000 3.000000 2.000000 3.000000 2.000000 8.000000 3.000000 14.000000 3.000000 2010.000000 4.000000 1418.000000 857.000000 547.000000 552.000000 508.000000 480.000000 738.000000 15500.000000 12.000000 2010.000000 755000.000000
In [ ]:
testing_data.describe()
Out[ ]:
Id MSSubClass LotFrontage LotArea OverallQual OverallCond YearBuilt YearRemodAdd MasVnrArea BsmtFinSF1 BsmtFinSF2 BsmtUnfSF TotalBsmtSF 1stFlrSF 2ndFlrSF LowQualFinSF GrLivArea BsmtFullBath BsmtHalfBath FullBath HalfBath BedroomAbvGr KitchenAbvGr TotRmsAbvGrd Fireplaces GarageYrBlt GarageCars GarageArea WoodDeckSF OpenPorchSF EnclosedPorch 3SsnPorch ScreenPorch PoolArea MiscVal MoSold YrSold
count 1459.000000 1459.000000 1232.000000 1459.000000 1459.000000 1459.000000 1459.000000 1459.000000 1444.000000 1458.000000 1458.000000 1458.000000 1458.000000 1459.000000 1459.000000 1459.000000 1459.000000 1457.000000 1457.000000 1459.000000 1459.000000 1459.000000 1459.000000 1459.000000 1459.00000 1381.000000 1458.000000 1458.000000 1459.000000 1459.000000 1459.000000 1459.000000 1459.000000 1459.000000 1459.000000 1459.000000 1459.000000
mean 2190.000000 57.378341 68.580357 9819.161069 6.078821 5.553804 1971.357779 1983.662783 100.709141 439.203704 52.619342 554.294925 1046.117970 1156.534613 325.967786 3.543523 1486.045922 0.434454 0.065202 1.570939 0.377656 2.854010 1.042495 6.385195 0.58122 1977.721217 1.766118 472.768861 93.174777 48.313914 24.243317 1.794380 17.064428 1.744345 58.167923 6.104181 2007.769705
std 421.321334 42.746880 22.376841 4955.517327 1.436812 1.113740 30.390071 21.130467 177.625900 455.268042 176.753926 437.260486 442.898624 398.165820 420.610226 44.043251 485.566099 0.530648 0.252468 0.555190 0.503017 0.829788 0.208472 1.508895 0.64742 26.431175 0.775945 217.048611 127.744882 68.883364 67.227765 20.207842 56.609763 30.491646 630.806978 2.722432 1.301740
min 1461.000000 20.000000 21.000000 1470.000000 1.000000 1.000000 1879.000000 1950.000000 0.000000 0.000000 0.000000 0.000000 0.000000 407.000000 0.000000 0.000000 407.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.000000 0.00000 1895.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 2006.000000
25% 1825.500000 20.000000 58.000000 7391.000000 5.000000 5.000000 1953.000000 1963.000000 0.000000 0.000000 0.000000 219.250000 784.000000 873.500000 0.000000 0.000000 1117.500000 0.000000 0.000000 1.000000 0.000000 2.000000 1.000000 5.000000 0.00000 1959.000000 1.000000 318.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.000000 2007.000000
50% 2190.000000 50.000000 67.000000 9399.000000 6.000000 5.000000 1973.000000 1992.000000 0.000000 350.500000 0.000000 460.000000 988.000000 1079.000000 0.000000 0.000000 1432.000000 0.000000 0.000000 2.000000 0.000000 3.000000 1.000000 6.000000 0.00000 1979.000000 2.000000 480.000000 0.000000 28.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.000000 2008.000000
75% 2554.500000 70.000000 80.000000 11517.500000 7.000000 6.000000 2001.000000 2004.000000 164.000000 753.500000 0.000000 797.750000 1305.000000 1382.500000 676.000000 0.000000 1721.000000 1.000000 0.000000 2.000000 1.000000 3.000000 1.000000 7.000000 1.00000 2002.000000 2.000000 576.000000 168.000000 72.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.000000 2009.000000
max 2919.000000 190.000000 200.000000 56600.000000 10.000000 9.000000 2010.000000 2010.000000 1290.000000 4010.000000 1526.000000 2140.000000 5095.000000 5095.000000 1862.000000 1064.000000 5095.000000 3.000000 2.000000 4.000000 2.000000 6.000000 2.000000 15.000000 4.00000 2207.000000 5.000000 1488.000000 1424.000000 742.000000 1012.000000 360.000000 576.000000 800.000000 17000.000000 12.000000 2010.000000
In [ ]:
training_data.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 1460 entries, 0 to 1459
Data columns (total 81 columns):
 #   Column         Non-Null Count  Dtype  
---  ------         --------------  -----  
 0   Id             1460 non-null   int64  
 1   MSSubClass     1460 non-null   int64  
 2   MSZoning       1460 non-null   object 
 3   LotFrontage    1201 non-null   float64
 4   LotArea        1460 non-null   int64  
 5   Street         1460 non-null   object 
 6   Alley          91 non-null     object 
 7   LotShape       1460 non-null   object 
 8   LandContour    1460 non-null   object 
 9   Utilities      1460 non-null   object 
 10  LotConfig      1460 non-null   object 
 11  LandSlope      1460 non-null   object 
 12  Neighborhood   1460 non-null   object 
 13  Condition1     1460 non-null   object 
 14  Condition2     1460 non-null   object 
 15  BldgType       1460 non-null   object 
 16  HouseStyle     1460 non-null   object 
 17  OverallQual    1460 non-null   int64  
 18  OverallCond    1460 non-null   int64  
 19  YearBuilt      1460 non-null   int64  
 20  YearRemodAdd   1460 non-null   int64  
 21  RoofStyle      1460 non-null   object 
 22  RoofMatl       1460 non-null   object 
 23  Exterior1st    1460 non-null   object 
 24  Exterior2nd    1460 non-null   object 
 25  MasVnrType     1452 non-null   object 
 26  MasVnrArea     1452 non-null   float64
 27  ExterQual      1460 non-null   object 
 28  ExterCond      1460 non-null   object 
 29  Foundation     1460 non-null   object 
 30  BsmtQual       1423 non-null   object 
 31  BsmtCond       1423 non-null   object 
 32  BsmtExposure   1422 non-null   object 
 33  BsmtFinType1   1423 non-null   object 
 34  BsmtFinSF1     1460 non-null   int64  
 35  BsmtFinType2   1422 non-null   object 
 36  BsmtFinSF2     1460 non-null   int64  
 37  BsmtUnfSF      1460 non-null   int64  
 38  TotalBsmtSF    1460 non-null   int64  
 39  Heating        1460 non-null   object 
 40  HeatingQC      1460 non-null   object 
 41  CentralAir     1460 non-null   object 
 42  Electrical     1459 non-null   object 
 43  1stFlrSF       1460 non-null   int64  
 44  2ndFlrSF       1460 non-null   int64  
 45  LowQualFinSF   1460 non-null   int64  
 46  GrLivArea      1460 non-null   int64  
 47  BsmtFullBath   1460 non-null   int64  
 48  BsmtHalfBath   1460 non-null   int64  
 49  FullBath       1460 non-null   int64  
 50  HalfBath       1460 non-null   int64  
 51  BedroomAbvGr   1460 non-null   int64  
 52  KitchenAbvGr   1460 non-null   int64  
 53  KitchenQual    1460 non-null   object 
 54  TotRmsAbvGrd   1460 non-null   int64  
 55  Functional     1460 non-null   object 
 56  Fireplaces     1460 non-null   int64  
 57  FireplaceQu    770 non-null    object 
 58  GarageType     1379 non-null   object 
 59  GarageYrBlt    1379 non-null   float64
 60  GarageFinish   1379 non-null   object 
 61  GarageCars     1460 non-null   int64  
 62  GarageArea     1460 non-null   int64  
 63  GarageQual     1379 non-null   object 
 64  GarageCond     1379 non-null   object 
 65  PavedDrive     1460 non-null   object 
 66  WoodDeckSF     1460 non-null   int64  
 67  OpenPorchSF    1460 non-null   int64  
 68  EnclosedPorch  1460 non-null   int64  
 69  3SsnPorch      1460 non-null   int64  
 70  ScreenPorch    1460 non-null   int64  
 71  PoolArea       1460 non-null   int64  
 72  PoolQC         7 non-null      object 
 73  Fence          281 non-null    object 
 74  MiscFeature    54 non-null     object 
 75  MiscVal        1460 non-null   int64  
 76  MoSold         1460 non-null   int64  
 77  YrSold         1460 non-null   int64  
 78  SaleType       1460 non-null   object 
 79  SaleCondition  1460 non-null   object 
 80  SalePrice      1460 non-null   int64  
dtypes: float64(3), int64(35), object(43)
memory usage: 924.0+ KB
In [ ]:
testing_data.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 1459 entries, 0 to 1458
Data columns (total 80 columns):
 #   Column         Non-Null Count  Dtype  
---  ------         --------------  -----  
 0   Id             1459 non-null   int64  
 1   MSSubClass     1459 non-null   int64  
 2   MSZoning       1455 non-null   object 
 3   LotFrontage    1232 non-null   float64
 4   LotArea        1459 non-null   int64  
 5   Street         1459 non-null   object 
 6   Alley          107 non-null    object 
 7   LotShape       1459 non-null   object 
 8   LandContour    1459 non-null   object 
 9   Utilities      1457 non-null   object 
 10  LotConfig      1459 non-null   object 
 11  LandSlope      1459 non-null   object 
 12  Neighborhood   1459 non-null   object 
 13  Condition1     1459 non-null   object 
 14  Condition2     1459 non-null   object 
 15  BldgType       1459 non-null   object 
 16  HouseStyle     1459 non-null   object 
 17  OverallQual    1459 non-null   int64  
 18  OverallCond    1459 non-null   int64  
 19  YearBuilt      1459 non-null   int64  
 20  YearRemodAdd   1459 non-null   int64  
 21  RoofStyle      1459 non-null   object 
 22  RoofMatl       1459 non-null   object 
 23  Exterior1st    1458 non-null   object 
 24  Exterior2nd    1458 non-null   object 
 25  MasVnrType     1443 non-null   object 
 26  MasVnrArea     1444 non-null   float64
 27  ExterQual      1459 non-null   object 
 28  ExterCond      1459 non-null   object 
 29  Foundation     1459 non-null   object 
 30  BsmtQual       1415 non-null   object 
 31  BsmtCond       1414 non-null   object 
 32  BsmtExposure   1415 non-null   object 
 33  BsmtFinType1   1417 non-null   object 
 34  BsmtFinSF1     1458 non-null   float64
 35  BsmtFinType2   1417 non-null   object 
 36  BsmtFinSF2     1458 non-null   float64
 37  BsmtUnfSF      1458 non-null   float64
 38  TotalBsmtSF    1458 non-null   float64
 39  Heating        1459 non-null   object 
 40  HeatingQC      1459 non-null   object 
 41  CentralAir     1459 non-null   object 
 42  Electrical     1459 non-null   object 
 43  1stFlrSF       1459 non-null   int64  
 44  2ndFlrSF       1459 non-null   int64  
 45  LowQualFinSF   1459 non-null   int64  
 46  GrLivArea      1459 non-null   int64  
 47  BsmtFullBath   1457 non-null   float64
 48  BsmtHalfBath   1457 non-null   float64
 49  FullBath       1459 non-null   int64  
 50  HalfBath       1459 non-null   int64  
 51  BedroomAbvGr   1459 non-null   int64  
 52  KitchenAbvGr   1459 non-null   int64  
 53  KitchenQual    1458 non-null   object 
 54  TotRmsAbvGrd   1459 non-null   int64  
 55  Functional     1457 non-null   object 
 56  Fireplaces     1459 non-null   int64  
 57  FireplaceQu    729 non-null    object 
 58  GarageType     1383 non-null   object 
 59  GarageYrBlt    1381 non-null   float64
 60  GarageFinish   1381 non-null   object 
 61  GarageCars     1458 non-null   float64
 62  GarageArea     1458 non-null   float64
 63  GarageQual     1381 non-null   object 
 64  GarageCond     1381 non-null   object 
 65  PavedDrive     1459 non-null   object 
 66  WoodDeckSF     1459 non-null   int64  
 67  OpenPorchSF    1459 non-null   int64  
 68  EnclosedPorch  1459 non-null   int64  
 69  3SsnPorch      1459 non-null   int64  
 70  ScreenPorch    1459 non-null   int64  
 71  PoolArea       1459 non-null   int64  
 72  PoolQC         3 non-null      object 
 73  Fence          290 non-null    object 
 74  MiscFeature    51 non-null     object 
 75  MiscVal        1459 non-null   int64  
 76  MoSold         1459 non-null   int64  
 77  YrSold         1459 non-null   int64  
 78  SaleType       1458 non-null   object 
 79  SaleCondition  1459 non-null   object 
dtypes: float64(11), int64(26), object(43)
memory usage: 912.0+ KB
In [ ]:
print("Shape of Data")
print("Training data : ", training_data.shape)
print("Testing data : ", testing_data.shape)
Shape of Data
Training data :  (1460, 81)
Testing data :  (1459, 80)
In [ ]:
data = (training_data.dtypes == 'object')
object_columns = list(data[data].index)
print("Categorical variables:")
print(object_columns)
Categorical variables:
['MSZoning', 'Street', 'Alley', 'LotShape', 'LandContour', 'Utilities', 'LotConfig', 'LandSlope', 'Neighborhood', 'Condition1', 'Condition2', 'BldgType', 'HouseStyle', 'RoofStyle', 'RoofMatl', 'Exterior1st', 'Exterior2nd', 'MasVnrType', 'ExterQual', 'ExterCond', 'Foundation', 'BsmtQual', 'BsmtCond', 'BsmtExposure', 'BsmtFinType1', 'BsmtFinType2', 'Heating', 'HeatingQC', 'CentralAir', 'Electrical', 'KitchenQual', 'Functional', 'FireplaceQu', 'GarageType', 'GarageFinish', 'GarageQual', 'GarageCond', 'PavedDrive', 'PoolQC', 'Fence', 'MiscFeature', 'SaleType', 'SaleCondition']
In [ ]:
data = (training_data.dtypes == 'float')
num_columns = list(data[data].index)
print("Real variables:")
print(num_columns)
Real variables:
['LotFrontage', 'MasVnrArea', 'GarageYrBlt']
In [ ]:
data_description = open('/content/drive/MyDrive/Project - YHills - House Price Prediction/dataset/data_description.txt')
print(data_description.read())
data_description.close()
MSSubClass: Identifies the type of dwelling involved in the sale.	

        20	1-STORY 1946 & NEWER ALL STYLES
        30	1-STORY 1945 & OLDER
        40	1-STORY W/FINISHED ATTIC ALL AGES
        45	1-1/2 STORY - UNFINISHED ALL AGES
        50	1-1/2 STORY FINISHED ALL AGES
        60	2-STORY 1946 & NEWER
        70	2-STORY 1945 & OLDER
        75	2-1/2 STORY ALL AGES
        80	SPLIT OR MULTI-LEVEL
        85	SPLIT FOYER
        90	DUPLEX - ALL STYLES AND AGES
       120	1-STORY PUD (Planned Unit Development) - 1946 & NEWER
       150	1-1/2 STORY PUD - ALL AGES
       160	2-STORY PUD - 1946 & NEWER
       180	PUD - MULTILEVEL - INCL SPLIT LEV/FOYER
       190	2 FAMILY CONVERSION - ALL STYLES AND AGES

MSZoning: Identifies the general zoning classification of the sale.
		
       A	Agriculture
       C	Commercial
       FV	Floating Village Residential
       I	Industrial
       RH	Residential High Density
       RL	Residential Low Density
       RP	Residential Low Density Park 
       RM	Residential Medium Density
	
LotFrontage: Linear feet of street connected to property

LotArea: Lot size in square feet

Street: Type of road access to property

       Grvl	Gravel	
       Pave	Paved
       	
Alley: Type of alley access to property

       Grvl	Gravel
       Pave	Paved
       NA 	No alley access
		
LotShape: General shape of property

       Reg	Regular	
       IR1	Slightly irregular
       IR2	Moderately Irregular
       IR3	Irregular
       
LandContour: Flatness of the property

       Lvl	Near Flat/Level	
       Bnk	Banked - Quick and significant rise from street grade to building
       HLS	Hillside - Significant slope from side to side
       Low	Depression
		
Utilities: Type of utilities available
		
       AllPub	All public Utilities (E,G,W,& S)	
       NoSewr	Electricity, Gas, and Water (Septic Tank)
       NoSeWa	Electricity and Gas Only
       ELO	Electricity only	
	
LotConfig: Lot configuration

       Inside	Inside lot
       Corner	Corner lot
       CulDSac	Cul-de-sac
       FR2	Frontage on 2 sides of property
       FR3	Frontage on 3 sides of property
	
LandSlope: Slope of property
		
       Gtl	Gentle slope
       Mod	Moderate Slope	
       Sev	Severe Slope
	
Neighborhood: Physical locations within Ames city limits

       Blmngtn	Bloomington Heights
       Blueste	Bluestem
       BrDale	Briardale
       BrkSide	Brookside
       ClearCr	Clear Creek
       CollgCr	College Creek
       Crawfor	Crawford
       Edwards	Edwards
       Gilbert	Gilbert
       IDOTRR	Iowa DOT and Rail Road
       MeadowV	Meadow Village
       Mitchel	Mitchell
       Names	North Ames
       NoRidge	Northridge
       NPkVill	Northpark Villa
       NridgHt	Northridge Heights
       NWAmes	Northwest Ames
       OldTown	Old Town
       SWISU	South & West of Iowa State University
       Sawyer	Sawyer
       SawyerW	Sawyer West
       Somerst	Somerset
       StoneBr	Stone Brook
       Timber	Timberland
       Veenker	Veenker
			
Condition1: Proximity to various conditions
	
       Artery	Adjacent to arterial street
       Feedr	Adjacent to feeder street	
       Norm	Normal	
       RRNn	Within 200' of North-South Railroad
       RRAn	Adjacent to North-South Railroad
       PosN	Near positive off-site feature--park, greenbelt, etc.
       PosA	Adjacent to postive off-site feature
       RRNe	Within 200' of East-West Railroad
       RRAe	Adjacent to East-West Railroad
	
Condition2: Proximity to various conditions (if more than one is present)
		
       Artery	Adjacent to arterial street
       Feedr	Adjacent to feeder street	
       Norm	Normal	
       RRNn	Within 200' of North-South Railroad
       RRAn	Adjacent to North-South Railroad
       PosN	Near positive off-site feature--park, greenbelt, etc.
       PosA	Adjacent to postive off-site feature
       RRNe	Within 200' of East-West Railroad
       RRAe	Adjacent to East-West Railroad
	
BldgType: Type of dwelling
		
       1Fam	Single-family Detached	
       2FmCon	Two-family Conversion; originally built as one-family dwelling
       Duplx	Duplex
       TwnhsE	Townhouse End Unit
       TwnhsI	Townhouse Inside Unit
	
HouseStyle: Style of dwelling
	
       1Story	One story
       1.5Fin	One and one-half story: 2nd level finished
       1.5Unf	One and one-half story: 2nd level unfinished
       2Story	Two story
       2.5Fin	Two and one-half story: 2nd level finished
       2.5Unf	Two and one-half story: 2nd level unfinished
       SFoyer	Split Foyer
       SLvl	Split Level
	
OverallQual: Rates the overall material and finish of the house

       10	Very Excellent
       9	Excellent
       8	Very Good
       7	Good
       6	Above Average
       5	Average
       4	Below Average
       3	Fair
       2	Poor
       1	Very Poor
	
OverallCond: Rates the overall condition of the house

       10	Very Excellent
       9	Excellent
       8	Very Good
       7	Good
       6	Above Average	
       5	Average
       4	Below Average	
       3	Fair
       2	Poor
       1	Very Poor
		
YearBuilt: Original construction date

YearRemodAdd: Remodel date (same as construction date if no remodeling or additions)

RoofStyle: Type of roof

       Flat	Flat
       Gable	Gable
       Gambrel	Gabrel (Barn)
       Hip	Hip
       Mansard	Mansard
       Shed	Shed
		
RoofMatl: Roof material

       ClyTile	Clay or Tile
       CompShg	Standard (Composite) Shingle
       Membran	Membrane
       Metal	Metal
       Roll	Roll
       Tar&Grv	Gravel & Tar
       WdShake	Wood Shakes
       WdShngl	Wood Shingles
		
Exterior1st: Exterior covering on house

       AsbShng	Asbestos Shingles
       AsphShn	Asphalt Shingles
       BrkComm	Brick Common
       BrkFace	Brick Face
       CBlock	Cinder Block
       CemntBd	Cement Board
       HdBoard	Hard Board
       ImStucc	Imitation Stucco
       MetalSd	Metal Siding
       Other	Other
       Plywood	Plywood
       PreCast	PreCast	
       Stone	Stone
       Stucco	Stucco
       VinylSd	Vinyl Siding
       Wd Sdng	Wood Siding
       WdShing	Wood Shingles
	
Exterior2nd: Exterior covering on house (if more than one material)

       AsbShng	Asbestos Shingles
       AsphShn	Asphalt Shingles
       BrkComm	Brick Common
       BrkFace	Brick Face
       CBlock	Cinder Block
       CemntBd	Cement Board
       HdBoard	Hard Board
       ImStucc	Imitation Stucco
       MetalSd	Metal Siding
       Other	Other
       Plywood	Plywood
       PreCast	PreCast
       Stone	Stone
       Stucco	Stucco
       VinylSd	Vinyl Siding
       Wd Sdng	Wood Siding
       WdShing	Wood Shingles
	
MasVnrType: Masonry veneer type

       BrkCmn	Brick Common
       BrkFace	Brick Face
       CBlock	Cinder Block
       None	None
       Stone	Stone
	
MasVnrArea: Masonry veneer area in square feet

ExterQual: Evaluates the quality of the material on the exterior 
		
       Ex	Excellent
       Gd	Good
       TA	Average/Typical
       Fa	Fair
       Po	Poor
		
ExterCond: Evaluates the present condition of the material on the exterior
		
       Ex	Excellent
       Gd	Good
       TA	Average/Typical
       Fa	Fair
       Po	Poor
		
Foundation: Type of foundation
		
       BrkTil	Brick & Tile
       CBlock	Cinder Block
       PConc	Poured Contrete	
       Slab	Slab
       Stone	Stone
       Wood	Wood
		
BsmtQual: Evaluates the height of the basement

       Ex	Excellent (100+ inches)	
       Gd	Good (90-99 inches)
       TA	Typical (80-89 inches)
       Fa	Fair (70-79 inches)
       Po	Poor (<70 inches
       NA	No Basement
		
BsmtCond: Evaluates the general condition of the basement

       Ex	Excellent
       Gd	Good
       TA	Typical - slight dampness allowed
       Fa	Fair - dampness or some cracking or settling
       Po	Poor - Severe cracking, settling, or wetness
       NA	No Basement
	
BsmtExposure: Refers to walkout or garden level walls

       Gd	Good Exposure
       Av	Average Exposure (split levels or foyers typically score average or above)	
       Mn	Mimimum Exposure
       No	No Exposure
       NA	No Basement
	
BsmtFinType1: Rating of basement finished area

       GLQ	Good Living Quarters
       ALQ	Average Living Quarters
       BLQ	Below Average Living Quarters	
       Rec	Average Rec Room
       LwQ	Low Quality
       Unf	Unfinshed
       NA	No Basement
		
BsmtFinSF1: Type 1 finished square feet

BsmtFinType2: Rating of basement finished area (if multiple types)

       GLQ	Good Living Quarters
       ALQ	Average Living Quarters
       BLQ	Below Average Living Quarters	
       Rec	Average Rec Room
       LwQ	Low Quality
       Unf	Unfinshed
       NA	No Basement

BsmtFinSF2: Type 2 finished square feet

BsmtUnfSF: Unfinished square feet of basement area

TotalBsmtSF: Total square feet of basement area

Heating: Type of heating
		
       Floor	Floor Furnace
       GasA	Gas forced warm air furnace
       GasW	Gas hot water or steam heat
       Grav	Gravity furnace	
       OthW	Hot water or steam heat other than gas
       Wall	Wall furnace
		
HeatingQC: Heating quality and condition

       Ex	Excellent
       Gd	Good
       TA	Average/Typical
       Fa	Fair
       Po	Poor
		
CentralAir: Central air conditioning

       N	No
       Y	Yes
		
Electrical: Electrical system

       SBrkr	Standard Circuit Breakers & Romex
       FuseA	Fuse Box over 60 AMP and all Romex wiring (Average)	
       FuseF	60 AMP Fuse Box and mostly Romex wiring (Fair)
       FuseP	60 AMP Fuse Box and mostly knob & tube wiring (poor)
       Mix	Mixed
		
1stFlrSF: First Floor square feet
 
2ndFlrSF: Second floor square feet

LowQualFinSF: Low quality finished square feet (all floors)

GrLivArea: Above grade (ground) living area square feet

BsmtFullBath: Basement full bathrooms

BsmtHalfBath: Basement half bathrooms

FullBath: Full bathrooms above grade

HalfBath: Half baths above grade

Bedroom: Bedrooms above grade (does NOT include basement bedrooms)

Kitchen: Kitchens above grade

KitchenQual: Kitchen quality

       Ex	Excellent
       Gd	Good
       TA	Typical/Average
       Fa	Fair
       Po	Poor
       	
TotRmsAbvGrd: Total rooms above grade (does not include bathrooms)

Functional: Home functionality (Assume typical unless deductions are warranted)

       Typ	Typical Functionality
       Min1	Minor Deductions 1
       Min2	Minor Deductions 2
       Mod	Moderate Deductions
       Maj1	Major Deductions 1
       Maj2	Major Deductions 2
       Sev	Severely Damaged
       Sal	Salvage only
		
Fireplaces: Number of fireplaces

FireplaceQu: Fireplace quality

       Ex	Excellent - Exceptional Masonry Fireplace
       Gd	Good - Masonry Fireplace in main level
       TA	Average - Prefabricated Fireplace in main living area or Masonry Fireplace in basement
       Fa	Fair - Prefabricated Fireplace in basement
       Po	Poor - Ben Franklin Stove
       NA	No Fireplace
		
GarageType: Garage location
		
       2Types	More than one type of garage
       Attchd	Attached to home
       Basment	Basement Garage
       BuiltIn	Built-In (Garage part of house - typically has room above garage)
       CarPort	Car Port
       Detchd	Detached from home
       NA	No Garage
		
GarageYrBlt: Year garage was built
		
GarageFinish: Interior finish of the garage

       Fin	Finished
       RFn	Rough Finished	
       Unf	Unfinished
       NA	No Garage
		
GarageCars: Size of garage in car capacity

GarageArea: Size of garage in square feet

GarageQual: Garage quality

       Ex	Excellent
       Gd	Good
       TA	Typical/Average
       Fa	Fair
       Po	Poor
       NA	No Garage
		
GarageCond: Garage condition

       Ex	Excellent
       Gd	Good
       TA	Typical/Average
       Fa	Fair
       Po	Poor
       NA	No Garage
		
PavedDrive: Paved driveway

       Y	Paved 
       P	Partial Pavement
       N	Dirt/Gravel
		
WoodDeckSF: Wood deck area in square feet

OpenPorchSF: Open porch area in square feet

EnclosedPorch: Enclosed porch area in square feet

3SsnPorch: Three season porch area in square feet

ScreenPorch: Screen porch area in square feet

PoolArea: Pool area in square feet

PoolQC: Pool quality
		
       Ex	Excellent
       Gd	Good
       TA	Average/Typical
       Fa	Fair
       NA	No Pool
		
Fence: Fence quality
		
       GdPrv	Good Privacy
       MnPrv	Minimum Privacy
       GdWo	Good Wood
       MnWw	Minimum Wood/Wire
       NA	No Fence
	
MiscFeature: Miscellaneous feature not covered in other categories
		
       Elev	Elevator
       Gar2	2nd Garage (if not described in garage section)
       Othr	Other
       Shed	Shed (over 100 SF)
       TenC	Tennis Court
       NA	None
		
MiscVal: $Value of miscellaneous feature

MoSold: Month Sold (MM)

YrSold: Year Sold (YYYY)

SaleType: Type of sale
		
       WD 	Warranty Deed - Conventional
       CWD	Warranty Deed - Cash
       VWD	Warranty Deed - VA Loan
       New	Home just constructed and sold
       COD	Court Officer Deed/Estate
       Con	Contract 15% Down payment regular terms
       ConLw	Contract Low Down payment and low interest
       ConLI	Contract Low Interest
       ConLD	Contract Low Down
       Oth	Other
		
SaleCondition: Condition of sale

       Normal	Normal Sale
       Abnorml	Abnormal Sale -  trade, foreclosure, short sale
       AdjLand	Adjoining Land Purchase
       Alloca	Allocation - two linked properties with separate deeds, typically condo with a garage unit	
       Family	Sale between family members
       Partial	Home was not completed when last assessed (associated with New Homes)

Missing Values:¶

Combine training and test data into a single dataframe¶

In [ ]:
dataset_complete = [training_data, testing_data]
dataset_combined = pd.concat(dataset_complete).reset_index(drop=True)
In [ ]:
dataset_complete
Out[ ]:
[        Id  MSSubClass MSZoning  ...  SaleType  SaleCondition SalePrice
 0        1          60       RL  ...        WD         Normal    208500
 1        2          20       RL  ...        WD         Normal    181500
 2        3          60       RL  ...        WD         Normal    223500
 3        4          70       RL  ...        WD        Abnorml    140000
 4        5          60       RL  ...        WD         Normal    250000
 5        6          50       RL  ...        WD         Normal    143000
 6        7          20       RL  ...        WD         Normal    307000
 7        8          60       RL  ...        WD         Normal    200000
 8        9          50       RM  ...        WD        Abnorml    129900
 9       10         190       RL  ...        WD         Normal    118000
 10      11          20       RL  ...        WD         Normal    129500
 11      12          60       RL  ...       New        Partial    345000
 12      13          20       RL  ...        WD         Normal    144000
 13      14          20       RL  ...       New        Partial    279500
 14      15          20       RL  ...        WD         Normal    157000
 15      16          45       RM  ...        WD         Normal    132000
 16      17          20       RL  ...        WD         Normal    149000
 17      18          90       RL  ...        WD         Normal     90000
 18      19          20       RL  ...        WD         Normal    159000
 19      20          20       RL  ...       COD        Abnorml    139000
 20      21          60       RL  ...       New        Partial    325300
 21      22          45       RM  ...        WD         Normal    139400
 22      23          20       RL  ...        WD         Normal    230000
 23      24         120       RM  ...        WD         Normal    129900
 24      25          20       RL  ...        WD         Normal    154000
 25      26          20       RL  ...        WD         Normal    256300
 26      27          20       RL  ...        WD         Normal    134800
 27      28          20       RL  ...        WD         Normal    306000
 28      29          20       RL  ...        WD         Normal    207500
 29      30          30       RM  ...        WD         Normal     68500
 30      31          70  C (all)  ...        WD         Normal     40000
 31      32          20       RL  ...        WD         Normal    149350
 32      33          20       RL  ...        WD         Normal    179900
 33      34          20       RL  ...        WD         Normal    165500
 34      35         120       RL  ...        WD         Normal    277500
 35      36          60       RL  ...        WD         Normal    309000
 36      37          20       RL  ...        WD         Normal    145000
 37      38          20       RL  ...        WD         Normal    153000
 38      39          20       RL  ...        WD        Abnorml    109000
 39      40          90       RL  ...        WD        AdjLand     82000
 40      41          20       RL  ...        WD        Abnorml    160000
 41      42          20       RL  ...        WD         Normal    170000
 42      43          85       RL  ...        WD         Normal    144000
 43      44          20       RL  ...        WD         Normal    130250
 44      45          20       RL  ...        WD         Normal    141000
 45      46         120       RL  ...        WD         Normal    319900
 46      47          50       RL  ...        WD        Abnorml    239686
 47      48          20       FV  ...        WD         Normal    249700
 48      49         190       RM  ...       New        Partial    113000
 49      50          20       RL  ...        WD         Normal    127000
 50      51          60       RL  ...        WD         Normal    177000
 51      52          50       RM  ...        WD         Normal    114500
 52      53          90       RM  ...        WD         Normal    110000
 53      54          20       RL  ...        WD         Normal    385000
 54      55          80       RL  ...        WD         Normal    130000
 55      56          20       RL  ...        WD         Normal    180500
 56      57         160       FV  ...        WD        Abnorml    172500
 57      58          60       RL  ...        WD         Normal    196500
 58      59          60       RL  ...       New        Partial    438780
 59      60          20       RL  ...        WD         Normal    124900
 60      61          20       RL  ...       New        Partial    158000
 61      62          75       RM  ...        WD         Normal    101000
 62      63         120       RL  ...        WD         Normal    202500
 63      64          70       RM  ...        WD         Normal    140000
 64      65          60       RL  ...        WD         Normal    219500
 65      66          60       RL  ...        WD         Normal    317000
 66      67          20       RL  ...        WD         Normal    180000
 67      68          20       RL  ...        WD         Normal    226000
 68      69          30       RM  ...        WD         Normal     80000
 69      70          50       RL  ...        WD         Normal    225000
 70      71          20       RL  ...        WD         Normal    244000
 71      72          20       RL  ...        WD         Normal    129500
 72      73          60       RL  ...        WD         Normal    185000
 73      74          20       RL  ...        WD         Normal    144900
 74      75          50       RM  ...        WD         Normal    107400
 75      76         180       RM  ...        WD         Normal     91000
 76      77          20       RL  ...        WD         Normal    135750
 77      78          50       RM  ...        WD         Normal    127000
 78      79          90       RL  ...        WD         Normal    136500
 79      80          50       RM  ...        WD         Normal    110000
 80      81          60       RL  ...        WD         Normal    193500
 81      82         120       RM  ...        WD         Normal    153500
 82      83          20       RL  ...        WD         Normal    245000
 83      84          20       RL  ...       COD         Normal    126500
 84      85          80       RL  ...        WD         Normal    168500
 85      86          60       RL  ...        WD         Normal    260000
 86      87          60       RL  ...        WD         Normal    174000
 87      88         160       FV  ...       New        Partial    164500
 88      89          50  C (all)  ...     ConLD        Abnorml     85000
 89      90          20       RL  ...        WD         Normal    123600
 90      91          20       RL  ...        WD         Normal    109900
 91      92          20       RL  ...        WD        Abnorml     98600
 92      93          30       RL  ...        WD         Normal    163500
 93      94         190  C (all)  ...        WD         Normal    133900
 94      95          60       RL  ...        WD         Normal    204750
 95      96          60       RL  ...        WD         Normal    185000
 96      97          20       RL  ...        WD         Normal    214000
 97      98          20       RL  ...        WD         Normal     94750
 98      99          30       RL  ...       COD        Abnorml     83000
 99     100          20       RL  ...        WD         Normal    128950
 100    101          20       RL  ...        WD         Normal    205000
 101    102          60       RL  ...        WD         Normal    178000
 102    103          90       RL  ...        WD         Alloca    118964
 103    104          20       RL  ...        WD         Normal    198900
 104    105          50       RM  ...        WD         Normal    169500
 105    106          60       FV  ...        WD         Normal    250000
 106    107          30       RM  ...        WD         Normal    100000
 107    108          20       RM  ...        WD        Partial    115000
 108    109          50       RM  ...        WD         Normal    115000
 109    110          20       RL  ...       COD         Normal    190000
 110    111          50       RL  ...        WD         Normal    136900
 111    112          80       RL  ...        WD         Normal    180000
 112    113          60       RL  ...       New        Partial    383970
 113    114          20       RL  ...       COD        Abnorml    217000
 114    115          70       RL  ...        WD         Normal    259500
 115    116         160       FV  ...        WD         Normal    176000
 116    117          20       RL  ...        WD         Normal    139000
 117    118          20       RL  ...       New        Partial    155000
 118    119          60       RL  ...        WD         Normal    320000
 119    120          60       RL  ...       New        Partial    163990
 120    121          80       RL  ...        WD         Normal    180000
 121    122          50       RM  ...        WD         Normal    100000
 122    123          20       RL  ...        WD         Normal    136000
 123    124         120       RL  ...        WD         Normal    153900
 124    125          20       RL  ...        WD         Normal    181000
 125    126         190       RM  ...        WD         Normal     84500
 126    127         120       RL  ...        WD         Normal    128000
 127    128          45       RM  ...        WD         Normal     87000
 128    129          60       RL  ...        WD         Normal    155000
 129    130          20       RL  ...        WD        Abnorml    150000
 130    131          60       RL  ...        WD         Normal    226000
 131    132          60       RL  ...        WD         Normal    244000
 132    133          20       RL  ...        WD         Normal    150750
 133    134          20       RL  ...        WD         Normal    220000
 134    135          20       RL  ...        WD         Normal    180000
 135    136          20       RL  ...        WD         Normal    174000
 136    137          20       RL  ...        WD         Normal    143000
 137    138          90       RL  ...        WD         Family    171000
 138    139          60       RL  ...        WD         Normal    230000
 139    140          60       RL  ...        WD         Normal    231500
 140    141          20       RL  ...     ConLI         Normal    115000
 141    142          20       RL  ...        WD         Normal    260000
 142    143          50       RL  ...        WD         Normal    166000
 143    144          20       RL  ...        WD         Normal    204000
 144    145          90       RM  ...     ConLI        Abnorml    125000
 145    146         160       RM  ...        WD         Normal    130000
 146    147          30       RM  ...        WD         Normal    105000
 147    148          60       RL  ...        WD         Normal    222500
 148    149          20       RL  ...        WD         Normal    141000
 149    150          50       RM  ...        WD         Normal    115000
 150    151          20       RL  ...        WD         Normal    122000
 151    152          20       RL  ...       New        Partial    372402
 152    153          60       RL  ...        WD         Normal    190000
 153    154          20       RL  ...        WD         Normal    235000
 154    155          30       RM  ...        WD         Family    125000
 155    156          50       RL  ...        WD         Normal     79000
 156    157          20       RL  ...        WD         Normal    109500
 157    158          60       RL  ...       New        Partial    269500
 158    159          60       FV  ...        WD         Normal    254900
 159    160          60       RL  ...       New        Partial    320000
 160    161          20       RL  ...        WD         Normal    162500
 161    162          60       RL  ...        WD         Normal    412500
 162    163          20       RL  ...       New        Partial    220000
 163    164          45       RL  ...        WD         Normal    103200
 164    165          40       RM  ...        WD         Normal    152000
 165    166         190       RL  ...        WD         Normal    127500
 166    167          20       RL  ...       COD         Normal    190000
 167    168          60       RL  ...       New        Partial    325624
 168    169          60       RL  ...        WD         Normal    183500
 169    170          20       RL  ...        WD         Normal    228000
 170    171          50       RM  ...        WD         Normal    128500
 171    172          20       RL  ...        WD         Normal    215000
 172    173         160       RL  ...        WD         Normal    239000
 173    174          20       RL  ...       COD         Normal    163000
 174    175          20       RL  ...        WD         Normal    184000
 175    176          20       RL  ...        WD         Normal    243000
 176    177          60       RL  ...        WD         Normal    211000
 177    178          50       RL  ...        WD         Normal    172500
 178    179          20       RL  ...       New        Partial    501837
 179    180          30       RM  ...        WD         Normal    100000
 180    181         160       FV  ...        WD         Normal    177000
 181    182          70       RL  ...        WD         Normal    200100
 182    183          20       RL  ...        WD         Normal    120000
 183    184          50       RM  ...        WD         Normal    200000
 184    185          50       RL  ...        WD         Normal    127000
 185    186          75       RM  ...        WD         Normal    475000
 186    187          80       RL  ...        WD         Normal    173000
 187    188          50       RL  ...        WD         Normal    135000
 188    189          90       RL  ...        WD         Alloca    153337
 189    190         120       RL  ...        WD         Normal    286000
 190    191          70       RL  ...        WD         Normal    315000
 191    192          60       RL  ...        WD         Normal    184000
 192    193          20       RL  ...        WD         Normal    192000
 193    194         160       RM  ...        WD         Normal    130000
 194    195          20       RL  ...        WD         Normal    127000
 195    196         160       RL  ...        WD         Normal    148500
 196    197          20       RL  ...       New        Partial    311872
 197    198          75       RL  ...        WD        Abnorml    235000
 198    199          75       RM  ...        WD        Abnorml    104000
 199    200          20       RL  ...        WD         Normal    274900
 200    201          20       RM  ...        WD         Normal    140000
 201    202          20       RL  ...        WD         Normal    171500
 202    203          50       RL  ...       COD         Normal    112000
 203    204         120       RM  ...        WD         Normal    149000
 204    205          50       RM  ...        WD         Normal    110000
 205    206          20       RL  ...        WD         Normal    180500
 206    207          20       RL  ...        WD         Normal    143900
 207    208          20       RL  ...        WD         Normal    141000
 208    209          60       RL  ...        WD         Normal    277000
 209    210          20       RL  ...        WD         Normal    145000
 210    211          30       RL  ...        WD         Normal     98000
 211    212          20       RL  ...        WD         Normal    186000
 212    213          60       FV  ...       New        Partial    252678
 213    214          20       RL  ...        WD         Normal    156000
 214    215          60       RL  ...        WD         Normal    161750
 215    216          20       RL  ...        WD         Normal    134450
 216    217          20       RL  ...        WD         Normal    210000
 217    218          70       RM  ...        WD         Family    107000
 218    219          50       RL  ...        WD         Normal    311500
 219    220         120       RL  ...       New        Partial    167240
 220    221          20       RL  ...       New        Partial    204900
 221    222          60       RL  ...     ConLI         Normal    200000
 222    223          60       RL  ...        WD         Normal    179900
 223    224          20       RL  ...        WD        Abnorml     97000
 224    225          20       RL  ...        WD         Normal    386250
 225    226         160       RM  ...       COD        Abnorml    112000
 226    227          60       RL  ...        WD        Abnorml    290000
 227    228         160       RM  ...        WD         Normal    106000
 228    229          20       RL  ...        WD         Normal    125000
 229    230         120       RL  ...        WD         Normal    192500
 230    231          20       RL  ...        WD         Normal    148000
 231    232          60       RL  ...        WD         Normal    403000
 232    233         160       RM  ...        WD         Normal     94500
 233    234          20       RL  ...        WD         Normal    128200
 234    235          60       RL  ...        WD         Normal    216500
 235    236         160       RM  ...        WD         Normal     89500
 236    237          20       RL  ...        WD         Normal    185500
 237    238          60       RL  ...        WD         Normal    194500
 238    239          20       RL  ...       New        Partial    318000
 239    240          50       RL  ...        WD         Normal    113000
 240    241          20       FV  ...        WD         Normal    262500
 241    242          30       RM  ...        WD         Normal    110500
 242    243          50       RM  ...        WD         Normal     79000
 243    244         160       RL  ...        WD         Normal    120000
 244    245          60       RL  ...        WD         Normal    205000
 245    246          20       RL  ...        WD         Normal    241500
 246    247         190       RM  ...        WD         Normal    137000
 247    248          20       RL  ...        WD         Normal    140000
 248    249          60       RL  ...        WD         Normal    180000
 249    250          50       RL  ...        WD         Normal    277000
 250    251          30       RL  ...        WD         Normal     76500
 251    252         120       RM  ...        WD         Family    235000
 252    253          60       RL  ...        WD         Normal    173000
 253    254          80       RL  ...       CWD         Normal    158000
 254    255          20       RL  ...        WD         Normal    145000
 255    256          60       RL  ...        WD         Normal    230000
 256    257          60       FV  ...        WD         Normal    207500
 257    258          20       RL  ...        WD        Abnorml    220000
 258    259          60       RL  ...        WD         Normal    231500
 259    260          20       RM  ...        WD         Normal     97000
 260    261          80       RL  ...        WD         Normal    176000
 261    262          60       RL  ...       New        Partial    276000
 262    263          80       RL  ...        WD         Normal    151000
 263    264          50       RM  ...        WD         Normal    130000
 264    265          30       RM  ...        WD         Normal     73000
 265    266          20       RL  ...        WD         Normal    175500
 266    267          60       RL  ...        WD         Normal    185000
 267    268          75       RL  ...        WD         Normal    179500
 268    269          30       RM  ...        WD         Normal    120500
 269    270          20       RL  ...        WD         Normal    148000
 270    271          60       FV  ...       New        Partial    266000
 271    272          20       RL  ...        WD         Normal    241500
 272    273          60       RL  ...        WD         Normal    290000
 273    274          20       RL  ...        WD         Normal    139000
 274    275          20       RL  ...        WD         Normal    124500
 275    276          50       RL  ...        WD         Normal    205000
 276    277          20       RL  ...        WD         Normal    201000
 277    278          20       RL  ...        WD         Normal    141000
 278    279          20       RL  ...       New        Partial    415298
 279    280          60       RL  ...        WD         Normal    192000
 280    281          60       RL  ...        WD         Normal    228500
 281    282          20       FV  ...       New        Partial    185000
 282    283         120       RL  ...     ConLw         Normal    207500
 283    284          20       RL  ...       New        Partial    244600
 284    285         120       RL  ...        WD         Normal    179200
 285    286         160       FV  ...       New        Partial    164700
 286    287          50       RL  ...        WD         Normal    159000
 287    288          20       RL  ...        WD         Normal     88000
 288    289          20       RL  ...        WD         Normal    122000
 289    290          70       RL  ...        WD         Normal    153575
 290    291          60       RL  ...       New        Partial    233230
 291    292         190       RL  ...        WD         Normal    135900
 292    293          50       RL  ...        WD         Normal    131000
 293    294          60       RL  ...        WD         Normal    235000
 294    295          20       RL  ...        WD         Normal    167000
 295    296          80       RL  ...        WD         Normal    142500
 296    297          50       RM  ...        WD         Normal    152000
 297    298          60       FV  ...        WD         Normal    239000
 298    299          60       RL  ...        WD         Normal    175000
 299    300          20       RL  ...        WD         Family    158500
 300    301         190       RL  ...        WD         Normal    157000
 301    302          60       RL  ...        WD         Normal    267000
 302    303          20       RL  ...        WD         Normal    205000
 303    304          20       RL  ...        WD        Abnorml    149900
 304    305          75       RM  ...        WD         Normal    295000
 305    306          20       RL  ...        WD         Normal    305900
 306    307          60       RL  ...        WD         Normal    225000
 307    308          50       RM  ...        WD         Normal     89500
 308    309          30       RL  ...        WD         Normal     82500
 309    310          20       RL  ...        WD         Normal    360000
 310    311          60       RL  ...        WD         Normal    165600
 311    312          20       RL  ...        WD         Normal    132000
 312    313         190       RM  ...        WD         Normal    119900
 313    314          20       RL  ...        WD         Normal    375000
 314    315          70       RM  ...        WD         Normal    178000
 315    316          60       RL  ...        WD         Normal    188500
 316    317          60       RL  ...        WD         Normal    260000
 317    318          60       FV  ...        WD         Normal    270000
 318    319          60       RL  ...        WD         Normal    260000
 319    320          80       RL  ...        WD         Normal    187500
 320    321          60       RL  ...       New        Partial    342643
 321    322          60       RL  ...        WD         Normal    354000
 322    323          60       RL  ...        WD         Normal    301000
 323    324          20       RM  ...        WD         Normal    126175
 324    325          80       RL  ...        WD         Normal    242000
 325    326          45       RM  ...        WD         Normal     87000
 326    327         120       RL  ...       Con         Normal    324000
 327    328          20       RL  ...        WD         Normal    145250
 328    329          75       RL  ...        WD         Normal    214500
 329    330          70       RM  ...        WD         Normal     78000
 330    331          90       RL  ...        WD         Normal    119000
 331    332          20       RL  ...        WD         Normal    139000
 332    333          20       RL  ...        WD         Normal    284000
 333    334         120       RM  ...        WD         Normal    207000
 334    335          60       RL  ...        WD         Normal    192000
 335    336         190       RL  ...        WD         Normal    228950
 336    337          20       RL  ...        WD         Normal    377426
 337    338          20       RL  ...        WD         Normal    214000
 338    339          20       RL  ...        WD         Normal    202500
 339    340          20       RL  ...        WD         Normal    155000
 340    341          60       RL  ...        WD         Normal    202900
 341    342          20       RH  ...        WD         Normal     82000
 342    343          90       RL  ...        WD         Normal     87500
 343    344         120       RL  ...        WD         Normal    266000
 344    345         160       RM  ...        WD         Normal     85000
 345    346          50       RL  ...        WD         Normal    140200
 346    347          20       RL  ...        WD         Normal    151500
 347    348          20       RL  ...        WD         Normal    157500
 348    349         160       RL  ...        WD         Normal    154000
 349    350          60       RL  ...       New        Partial    437154
 350    351         120       RL  ...       New        Partial    318061
 351    352         120       RL  ...        WD        Abnorml    190000
 352    353          50       RL  ...     ConLw         Normal     95000
 353    354          30       RM  ...        WD         Normal    105900
 354    355          50       RL  ...        WD         Normal    140000
 355    356          20       RL  ...        WD         Normal    177500
 356    357          20       RL  ...        WD         Normal    173000
 357    358         120       RM  ...        WD         Normal    134000
 358    359          80       RL  ...        WD        Abnorml    130000
 359    360          60       RL  ...        WD         Normal    280000
 360    361          85       RL  ...        WD         Normal    156000
 361    362          50       RL  ...        WD         Normal    145000
 362    363          85       RL  ...     ConLD         Normal    198500
 363    364         160       RM  ...        WD         Normal    118000
 364    365          60       RL  ...        WD         Normal    190000
 365    366          70       RM  ...        WD         Normal    147000
 366    367          20       RL  ...        WD         Normal    159000
 367    368          80       RL  ...        WD         Normal    165000
 368    369          20       RL  ...        WD         Normal    132000
 369    370          20       RL  ...        WD         Normal    162000
 370    371          60       RL  ...        WD         Normal    172400
 371    372          50       RL  ...        WD         Normal    134432
 372    373         120       RL  ...        WD         Normal    125000
 373    374          20       RL  ...        WD         Normal    123000
 374    375          60       RL  ...        WD         Normal    219500
 375    376          30       RL  ...        WD         Normal     61000
 376    377          85       RL  ...        WD         Normal    148000
 377    378          60       FV  ...        WD         Normal    340000
 378    379          20       RL  ...       New        Partial    394432
 379    380          60       RL  ...        WD         Normal    179000
 380    381          50       RL  ...        WD         Normal    127000
 381    382          20       FV  ...       New        Partial    187750
 382    383          60       RL  ...        WD         Normal    213500
 383    384          45       RH  ...        WD         Normal     76000
 384    385          60       RL  ...        WD         Normal    240000
 385    386         120       RL  ...        WD         Normal    192000
 386    387          50       RL  ...        WD        AdjLand     81000
 387    388          80       RL  ...        WD        Abnorml    125000
 388    389          20       RL  ...        WD         Normal    191000
 389    390          60       RL  ...       New        Partial    426000
 390    391          50       RL  ...        WD         Normal    119000
 391    392          60       RL  ...        WD         Normal    215000
 392    393          20       RL  ...        WD         Normal    106500
 393    394          30       RL  ...        WD        Abnorml    100000
 394    395          50       RL  ...        WD         Normal    109000
 395    396          20       RL  ...        WD         Normal    129000
 396    397          20       RL  ...        WD         Normal    123000
 397    398          60       RL  ...        WD         Normal    169500
 398    399          30       RM  ...        WD        Abnorml     67000
 399    400          60       FV  ...        WD         Normal    241000
 400    401         120       RL  ...        WD         Normal    245500
 401    402          20       RL  ...       New        Partial    164990
 402    403          30       RL  ...        WD         Normal    108000
 403    404          60       RL  ...        WD        Abnorml    258000
 404    405          60       RL  ...        WD         Normal    168000
 405    406          20       RL  ...        WD         Normal    150000
 406    407          50       RL  ...        WD         Normal    115000
 407    408          70       RL  ...        WD         Normal    177000
 408    409          60       RL  ...       New        Partial    280000
 409    410          60       FV  ...       New        Partial    339750
 410    411          20       RL  ...       COD        Abnorml     60000
 411    412         190       RL  ...        WD         Normal    145000
 412    413          20       FV  ...       New        Partial    222000
 413    414          30       RM  ...        WD         Normal    115000
 414    415          60       RL  ...        WD         Normal    228000
 415    416          20       RL  ...       New        Partial    181134
 416    417          60       RL  ...        WD         Normal    149500
 417    418          70       RL  ...        WD         Normal    239000
 418    419          50       RL  ...        WD        AdjLand    126000
 419    420          20       RL  ...        WD         Normal    142000
 420    421          90       RM  ...        WD         Alloca    206300
 421    422          20       RL  ...        WD         Normal    215000
 422    423          20       RL  ...        WD         Normal    113000
 423    424          60       RL  ...        WD         Normal    315000
 424    425          20       RL  ...        WD         Normal    139000
 425    426          60       RM  ...        WD         Normal    135000
 426    427          80       RL  ...        WD         Normal    275000
 427    428          20       RL  ...        WD         Normal    109008
 428    429          20       RL  ...       New        Partial    195400
 429    430          20       RL  ...        WD         Normal    175000
 430    431         160       RM  ...       COD        Abnorml     85400
 431    432          50       RM  ...     ConLD        Abnorml     79900
 432    433         160       RM  ...        WD         Normal    122500
 433    434          60       RL  ...        WD         Normal    181000
 434    435         180       RM  ...        WD         Normal     81000
 435    436          60       RL  ...     ConLw         Normal    212000
 436    437          50       RM  ...        WD         Normal    116000
 437    438          45       RM  ...        WD         Normal    119000
 438    439          30       RL  ...        WD         Normal     90350
 439    440          50       RL  ...     ConLI         Normal    110000
 440    441          20       RL  ...        WD         Normal    555000
 441    442          90       RL  ...        WD         Normal    118000
 442    443          50       RM  ...        WD         Normal    162900
 443    444         120       RL  ...       New        Partial    172500
 444    445          60       RL  ...        WD         Normal    210000
 445    446          20       RL  ...       COD         Normal    127500
 446    447          20       RL  ...        WD         Normal    190000
 447    448          60       RL  ...        WD         Normal    199900
 448    449          50       RM  ...        WD         Normal    119500
 449    450          50       RM  ...        WD         Normal    120000
 450    451          30       RM  ...        WD         Normal    110000
 451    452          20       RL  ...        WD         Normal    280000
 452    453          60       RL  ...        WD         Normal    204000
 453    454          60       FV  ...        WD         Normal    210000
 454    455          90       RL  ...        WD         Family    188000
 455    456          20       RL  ...        WD         Normal    175500
 456    457          70       RM  ...       COD        Abnorml     98000
 457    458          20       RL  ...        WD         Normal    256000
 458    459          70       RM  ...        WD         Normal    161000
 459    460          50       RL  ...        WD         Normal    110000
 460    461          60       FV  ...       New        Partial    263435
 461    462          70       RL  ...        WD         Normal    155000
 462    463          20       RL  ...        WD         Normal     62383
 463    464          70       RL  ...        WD         Normal    188700
 464    465          20       RL  ...        WD         Normal    124000
 465    466         120       RM  ...        WD         Normal    178740
 466    467          20       RL  ...        WD         Normal    167000
 467    468          70       RL  ...        WD         Normal    146500
 468    469          20       RL  ...        WD         Normal    250000
 469    470          60       RL  ...        WD         Normal    187000
 470    471         120       RL  ...        WD         Normal    212000
 471    472          60       RL  ...        WD         Normal    190000
 472    473         180       RM  ...        WD         Normal    148000
 473    474          20       RL  ...       New        Partial    440000
 474    475         120       RL  ...        WD         Normal    251000
 475    476          20       RL  ...        WD         Normal    132500
 476    477          20       RL  ...        WD         Normal    208900
 477    478          60       RL  ...        WD         Normal    380000
 478    479          20       RL  ...        WD         Normal    297000
 479    480          30       RM  ...        WD         Alloca     89471
 480    481          20       RL  ...        WD         Normal    326000
 481    482          20       RL  ...        WD         Normal    374000
 482    483          70       RM  ...        WD         Normal    155000
 483    484         120       RM  ...        WD         Normal    164000
 484    485          20       RL  ...        WD         Normal    132500
 485    486          20       RL  ...        WD         Normal    147000
 486    487          20       RL  ...        WD         Normal    156000
 487    488          20       RL  ...        WD         Normal    175000
 488    489         190       RL  ...     ConLD         Normal    160000
 489    490         180       RM  ...        WD         Normal     86000
 490    491         160       RM  ...        WD         Normal    115000
 491    492          50       RL  ...        WD         Normal    133000
 492    493          60       RL  ...       New        Partial    172785
 493    494          20       RL  ...        WD         Normal    155000
 494    495          30       RM  ...        WD         Normal     91300
 495    496          30  C (all)  ...        WD        Abnorml     34900
 496    497          20       RL  ...        WD         Normal    430000
 497    498          50       RL  ...        WD         Normal    184000
 498    499          20       RL  ...        WD         Normal    130000
 499    500          20       RL  ...        WD         Normal    120000
 500    501         160       RM  ...        WD         Normal    113000
 501    502          60       FV  ...        WD         Normal    226700
 502    503          20       RL  ...        WD         Normal    140000
 503    504          20       RL  ...        WD         Normal    289000
 504    505         160       RL  ...        WD         Normal    147000
 505    506          90       RM  ...       COD         Normal    124500
 506    507          60       RL  ...        WD         Normal    215000
 507    508          20       FV  ...       New        Partial    208300
 508    509          70       RM  ...        WD         Normal    161000
 509    510          20       RL  ...        WD         Normal    124500
 510    511          20       RL  ...        WD         Normal    164900
 511    512         120       RL  ...       New        Partial    202665
 512    513          20       RL  ...        WD         Normal    129900
 513    514          20       RL  ...        WD         Normal    134000
 514    515          45       RL  ...        WD         Normal     96500
 515    516          20       RL  ...       New        Partial    402861
 516    517          80       RL  ...       COD        Abnorml    158000
 517    518          60       RL  ...        WD         Normal    265000
 518    519          60       RL  ...        WD         Normal    211000
 519    520          70       RL  ...        WD         Normal    234000
 520    521         190       RL  ...        WD         Normal    106250
 521    522          20       RL  ...        WD         Normal    150000
 522    523          50       RM  ...        WD         Normal    159000
 523    524          60       RL  ...       New        Partial    184750
 524    525          60       RL  ...        WD         Normal    315750
 525    526          20       FV  ...        WD         Normal    176000
 526    527          20       RL  ...        WD         Normal    132000
 527    528          60       RL  ...       New        Partial    446261
 528    529          30       RL  ...        WD         Normal     86000
 529    530          20       RL  ...        WD         Alloca    200624
 530    531          80       RL  ...        WD        Abnorml    175000
 531    532          70       RM  ...        WD         Normal    128000
 532    533          20       RL  ...        WD         Normal    107500
 533    534          20       RL  ...        WD         Normal     39300
 534    535          60       RL  ...        WD         Normal    178000
 535    536         190       RL  ...        WD         Normal    107500
 536    537          60       RL  ...        WD         Normal    188000
 537    538          20       RL  ...       COD         Normal    111250
 538    539          20       RL  ...        WD         Normal    158000
 539    540          20       RL  ...        WD         Normal    272000
 540    541          20       RL  ...        WD         Normal    315000
 541    542          60       RL  ...        WD         Normal    248000
 542    543          20       RL  ...        WD         Normal    213250
 543    544         120       RH  ...        WD         Normal    133000
 544    545          60       RL  ...       New        Partial    179665
 545    546          50       RL  ...        WD         Normal    229000
 546    547          50       RL  ...        WD         Normal    210000
 547    548          85       RL  ...        WD         Normal    129500
 548    549          20       RM  ...        WD         Normal    125000
 549    550          60       FV  ...        WD         Normal    263000
 550    551         120       RL  ...       COD        Abnorml    140000
 551    552          20       RM  ...        WD         Normal    112500
 552    553          20       RL  ...        WD         Normal    255500
 553    554          20       RL  ...        WD         Normal    108000
 554    555          60       RL  ...        WD         Normal    284000
 555    556          45       RM  ...        WD         Normal    113000
 556    557          20       RL  ...        WD         Normal    141000
 557    558          50  C (all)  ...       COD         Normal    108000
 558    559          60       RL  ...        WD         Normal    175000
 559    560         120       RL  ...        WD         Normal    234000
 560    561          20       RL  ...        WD         Normal    121500
 561    562          20       RL  ...        WD         Normal    170000
 562    563          30       RL  ...        WD         Normal    108000
 563    564          50       RL  ...        WD         Normal    185000
 564    565          60       RL  ...        WD         Normal    268000
 565    566          70       RL  ...        WD         Normal    128000
 566    567          60       RL  ...        WD         Normal    325000
 567    568          20       RL  ...        WD         Normal    214000
 568    569          50       RL  ...        WD         Normal    316600
 569    570          90       RL  ...        WD         Normal    135960
 570    571          90       RL  ...        WD         Normal    142600
 571    572          20       RL  ...        WD        Abnorml    120000
 572    573          60       RL  ...       New        Partial    224500
 573    574          80       RL  ...        WD         Normal    170000
 574    575          80       RL  ...        WD         Normal    139000
 575    576          50       RL  ...       COD        Abnorml    118500
 576    577          50       RL  ...        WD         Normal    145000
 577    578          80       RL  ...        WD        Abnorml    164500
 578    579         160       FV  ...        WD        Abnorml    146000
 579    580          50       RM  ...        WD         Normal    131500
 580    581          20       RL  ...        WD         Normal    181900
 581    582          20       RL  ...       New        Partial    253293
 582    583          90       RL  ...        WD         Normal    118500
 583    584          75       RM  ...        WD         Normal    325000
 584    585          50       RM  ...        WD         Normal    133000
 585    586          20       RL  ...       New        Partial    369900
 586    587          30       RL  ...        WD         Normal    130000
 587    588          85       RL  ...        WD         Normal    137000
 588    589          20       RL  ...        WD        Partial    143000
 589    590          40       RM  ...        WD         Normal     79500
 590    591          60       RL  ...        WD         Normal    185900
 591    592          60       RL  ...     ConLI         Normal    451950
 592    593          20       RL  ...        WD         Normal    138000
 593    594         120       RM  ...        WD         Normal    140000
 594    595          20       RL  ...        WD         Normal    110000
 595    596          20       RL  ...       New        Partial    319000
 596    597          70       RM  ...        WD         Normal    114504
 597    598         120       RL  ...       New        Partial    194201
 598    599          20       RL  ...        WD         Normal    217500
 599    600         160       RM  ...       COD         Normal    151000
 600    601          60       RL  ...        WD         Normal    275000
 601    602          50       RM  ...        WD         Normal    141000
 602    603          60       RL  ...        WD        Abnorml    220000
 603    604         160       FV  ...        WD         Normal    151000
 604    605          20       RL  ...        WD         Normal    221000
 605    606          60       RL  ...        WD         Normal    205000
 606    607          20       RL  ...        WD         Normal    152000
 607    608          20       RL  ...        WD         Normal    225000
 608    609          70       RL  ...        WD         Alloca    359100
 609    610          20       RL  ...        WD         Normal    118500
 610    611          60       RL  ...        WD         Normal    313000
 611    612          80       RL  ...        WD         Normal    148000
 612    613          60       RL  ...        WD         Normal    261500
 613    614          20       RL  ...       New        Partial    147000
 614    615         180       RM  ...        WD         Normal     75500
 615    616          85       RL  ...        WD        Abnorml    137500
 616    617          60       RL  ...        WD         Normal    183200
 617    618          45       RL  ...        WD         Normal    105500
 618    619          20       RL  ...       New        Partial    314813
 619    620          60       RL  ...        WD         Normal    305000
 620    621          30       RL  ...        WD         Normal     67000
 621    622          60       RL  ...        WD         Normal    240000
 622    623          20       RL  ...        WD         Normal    135000
 623    624         160       FV  ...        WD         Normal    168500
 624    625          60       RL  ...        WD         Normal    165150
 625    626          20       RL  ...        WD         Normal    160000
 626    627          20       RL  ...        WD         Normal    139900
 627    628          80       RL  ...        WD         Normal    153000
 628    629          60       RL  ...        WD         Family    135000
 629    630          80       RL  ...        WD         Normal    168500
 630    631          70       RM  ...        WD        Abnorml    124000
 631    632         120       RL  ...        WD         Normal    209500
 632    633          20       RL  ...        WD         Family     82500
 633    634          20       RL  ...        WD         Normal    139400
 634    635          90       RL  ...        WD         Normal    144000
 635    636         190       RH  ...        WD        Abnorml    200000
 636    637          30       RM  ...     ConLw         Normal     60000
 637    638         190       RM  ...        WD         Normal     93000
 638    639          30       RL  ...        WD         Normal     85000
 639    640         120       RL  ...       New        Partial    264561
 640    641         120       RL  ...        WD         Normal    274000
 641    642          60       FV  ...        WD         Normal    226000
 642    643          80       RL  ...        WD         Normal    345000
 643    644          60       RL  ...        WD         Normal    152000
 644    645          20       FV  ...       New        Partial    370878
 645    646          20       RL  ...        WD         Normal    143250
 646    647          20       RL  ...        WD         Normal     98300
 647    648          20       RL  ...        WD         Normal    155000
 648    649          60       RL  ...        WD         Normal    155000
 649    650         180       RM  ...        WD         Normal     84500
 650    651          60       FV  ...        WD         Normal    205950
 651    652          70       RL  ...        WD         Normal    108000
 652    653          60       RL  ...        WD         Normal    191000
 653    654          50       RM  ...        WD         Normal    135000
 654    655          20       RL  ...        WD         Normal    350000
 655    656         160       RM  ...        WD         Family     88000
 656    657          20       RL  ...        WD         Normal    145500
 657    658          70       RL  ...        WD         Normal    149000
 658    659          50       RL  ...        WD        Abnorml     97500
 659    660          20       RL  ...        WD         Normal    167000
 660    661          60       RL  ...        WD         Normal    197900
 661    662          60       RL  ...        WD         Normal    402000
 662    663          20       RL  ...        WD         Normal    110000
 663    664          85       RL  ...        WD         Normal    137500
 664    665          20       RL  ...       New        Partial    423000
 665    666          60       RL  ...        WD         Normal    230500
 666    667          60       RL  ...        WD        Abnorml    129000
 667    668          20       RL  ...        WD         Normal    193500
 668    669          20       RL  ...        WD         Normal    168000
 669    670          30       RL  ...        WD         Normal    137500
 670    671          60       RL  ...        WD         Normal    173500
 671    672          70       RH  ...        WD         Normal    103600
 672    673          20       RL  ...        WD         Normal    165000
 673    674          20       RL  ...        WD         Normal    257500
 674    675          20       RL  ...        WD         Normal    140000
 675    676         160       RL  ...        WD         Normal    148500
 676    677          70       RM  ...        WD         Normal     87000
 677    678          30       RL  ...        WD         Normal    109500
 678    679          20       RL  ...       New        Partial    372500
 679    680          20       RL  ...        WD         Normal    128500
 680    681         120       RL  ...        WD         Normal    143000
 681    682          50       RH  ...        WD        Abnorml    159434
 682    683         120       RL  ...        WD         Normal    173000
 683    684          20       RL  ...        WD         Normal    285000
 684    685          60       RL  ...        WD         Normal    221000
 685    686         160       RL  ...        WD         Normal    207500
 686    687          60       FV  ...       New        Partial    227875
 687    688         160       FV  ...        WD         Normal    148800
 688    689          20       RL  ...       New        Partial    392000
 689    690         120       RL  ...        WD         Normal    194700
 690    691         120       RM  ...        WD         Normal    141000
 691    692          60       RL  ...        WD         Normal    755000
 692    693          60       RL  ...        WD         Normal    335000
 693    694          30       RL  ...        WD        Abnorml    108480
 694    695          50       RM  ...        WD         Normal    141500
 695    696          20       RL  ...        WD         Normal    176000
 696    697          30       RM  ...        WD         Normal     89000
 697    698          20       RL  ...        WD         Normal    123500
 698    699          20       RL  ...        WD         Normal    138500
 699    700         120       FV  ...        WD         Normal    196000
 700    701          20       RL  ...        WD         Normal    312500
 701    702          20       RL  ...       COD         Normal    140000
 702    703          60       RL  ...       New        Partial    361919
 703    704         190       RM  ...        WD         Normal    140000
 704    705          20       RL  ...        WD         Normal    213000
 705    706         190       RM  ...        WD         Normal     55000
 706    707          20       RL  ...        WD         Normal    302000
 707    708         120       RL  ...        WD         Normal    254000
 708    709          60       RL  ...       New        Partial    179540
 709    710          20       RL  ...        WD        Abnorml    109900
 710    711          30       RL  ...        WD         Normal     52000
 711    712          50  C (all)  ...        WD        Abnorml    102776
 712    713         120       RL  ...        WD         Normal    189000
 713    714         190       RL  ...        WD         Normal    129000
 714    715          60       RL  ...        WD         Normal    130500
 715    716          20       RL  ...        WD         Normal    165000
 716    717          70       RM  ...        WD         Normal    159500
 717    718          20       RL  ...        WD         Normal    157000
 718    719          60       RL  ...        WD         Normal    341000
 719    720          20       RL  ...        WD         Normal    128500
 720    721         120       RL  ...        WD         Normal    275000
 721    722         120       RM  ...        WD         Normal    143000
 722    723          20       RL  ...        WD         Normal    124500
 723    724          50       RL  ...        WD         Normal    135000
 724    725          20       RL  ...        WD         Normal    320000
 725    726          20       RL  ...        WD         Normal    120500
 726    727          20       RL  ...        WD         Normal    222000
 727    728          20       RL  ...        WD         Normal    194500
 728    729          90       RL  ...       COD        Abnorml    110000
 729    730          30       RM  ...        WD         Normal    103000
 730    731         120       RL  ...        WD         Normal    236500
 731    732          80       RL  ...        WD         Normal    187500
 732    733          60       RL  ...        WD         Normal    222500
 733    734          20       RL  ...        WD         Normal    131400
 734    735          20       RL  ...        WD         Family    108000
 735    736          75       RM  ...        WD         Normal    163000
 736    737          90       RL  ...        WD         Normal     93500
 737    738          60       RL  ...        WD         Normal    239900
 738    739          90       RL  ...        WD         Alloca    179000
 739    740          60       RL  ...        WD         Normal    190000
 740    741          70       RM  ...        WD        Abnorml    132000
 741    742          20       RL  ...        WD         Normal    142000
 742    743          20       RL  ...        WD         Normal    179000
 743    744          80       RL  ...        WD         Normal    175000
 744    745         120       RL  ...        WD         Normal    180000
 745    746          60       RL  ...        WD         Normal    299800
 746    747          60       RL  ...        WD         Normal    236000
 747    748          70       RM  ...        WD         Normal    265979
 748    749          20       RL  ...        WD         Normal    260400
 749    750          50       RL  ...        WD         Normal     98000
 750    751          50       RM  ...        WD         Normal     96500
 751    752          60       RL  ...        WD         Normal    162000
 752    753          20       RL  ...        WD         Normal    217000
 753    754          60       RL  ...        WD         Normal    275500
 754    755          20       RL  ...        WD         Normal    156000
 755    756         160       FV  ...        WD         Normal    172500
 756    757          60       RL  ...        WD         Normal    212000
 757    758          60       RL  ...        WD        Abnorml    158900
 758    759         160       FV  ...        WD         Normal    179400
 759    760          60       RL  ...        WD         Normal    290000
 760    761          20       RL  ...        WD         Normal    127500
 761    762          30       RM  ...        WD         Normal    100000
 762    763          60       FV  ...       Con         Normal    215200
 763    764          60       RL  ...        WD         Normal    337000
 764    765         120       RL  ...        WD         Normal    270000
 765    766          20       RL  ...       New        Partial    264132
 766    767          60       RL  ...        WD         Normal    196500
 767    768          50       RL  ...        WD         Normal    160000
 768    769          20       RL  ...        WD         Normal    216837
 769    770          60       RL  ...        WD         Normal    538000
 770    771          85       RL  ...        WD         Normal    134900
 771    772          20       RL  ...       COD         Normal    102000
 772    773          80       RL  ...        WD        Abnorml    107000
 773    774          20       RL  ...       COD         Normal    114500
 774    775          20       RL  ...       New        Partial    395000
 775    776         120       RM  ...        WD         Normal    162000
 776    777          20       RL  ...       New        Partial    221500
 777    778          20       RL  ...        WD         Normal    142500
 778    779          90       RH  ...        WD         Normal    144000
 779    780          90       RL  ...        WD         Normal    135000
 780    781          20       RL  ...        WD         Normal    176000
 781    782          60       RL  ...        WD         Normal    175900
 782    783          20       RL  ...        WD         Normal    187100
 783    784          85       RL  ...        WD         Normal    165500
 784    785          75       RM  ...        WD         Normal    128000
 785    786          20       RL  ...        WD         Normal    161500
 786    787          50       RM  ...        WD         Normal    139000
 787    788          60       RL  ...        WD         Normal    233000
 788    789          20       RM  ...        WD         Normal    107900
 789    790          60       RL  ...        WD         Normal    187500
 790    791         120       RL  ...        WD         Normal    160200
 791    792          80       RL  ...        WD         Normal    146800
 792    793          60       RL  ...        WD         Normal    269790
 793    794          20       RL  ...       New        Partial    225000
 794    795          60       RL  ...        WD         Normal    194500
 795    796          60       RL  ...        WD         Normal    171000
 796    797          20       RL  ...        WD         Normal    143500
 797    798          20       RL  ...        WD        Abnorml    110000
 798    799          60       RL  ...       New        Partial    485000
 799    800          50       RL  ...        WD         Normal    175000
 800    801          60       RL  ...        WD         Normal    200000
 801    802          30       RM  ...        WD         Normal    109900
 802    803          60       RL  ...        WD         Normal    189000
 803    804          60       RL  ...       New        Partial    582933
 804    805          20       RL  ...        WD         Family    118000
 805    806          20       RL  ...       New        Partial    227680
 806    807          80       RL  ...        WD         Normal    135500
 807    808          70       RL  ...        WD         Normal    223500
 808    809          80       RL  ...        WD         Normal    159950
 809    810          75       RM  ...        WD         Normal    106000
 810    811          20       RL  ...        WD         Normal    181000
 811    812         120       RM  ...     ConLD         Normal    144500
 812    813          20  C (all)  ...        WD         Alloca     55993
 813    814          20       RL  ...       COD         Normal    157900
 814    815          50       RL  ...        WD         Normal    116000
 815    816          20       RL  ...        WD         Normal    224900
 816    817          20       RL  ...        WD         Normal    137000
 817    818          20       RL  ...        WD         Normal    271000
 818    819          80       RL  ...        WD         Normal    155000
 819    820         120       RL  ...       New        Partial    224000
 820    821          60       RL  ...        WD         Normal    183000
 821    822          20       RM  ...        WD         Normal     93000
 822    823          60       RL  ...        WD         Family    225000
 823    824          50       RL  ...        WD         Normal    139500
 824    825          20       FV  ...       New        Partial    232600
 825    826          20       RL  ...       New        Partial    385000
 826    827          45       RM  ...        WD         Normal    109500
 827    828          20       RL  ...        WD         Normal    189000
 828    829          60       RL  ...        WD        Abnorml    185000
 829    830         160       FV  ...        WD         Normal    147400
 830    831          20       RL  ...        WD         Normal    166000
 831    832         160       FV  ...        WD         Normal    151000
 832    833          60       RL  ...        WD         Normal    237000
 833    834          20       RL  ...        WD         Normal    167000
 834    835          20       RL  ...        WD         Normal    139950
 835    836          20       RL  ...        WD         Normal    128000
 836    837          30       RM  ...       COD         Normal    153500
 837    838         160       RM  ...        WD         Normal    100000
 838    839          20       RL  ...        WD         Normal    144000
 839    840          50       RL  ...        WD         Normal    130500
 840    841          70       RH  ...        WD         Normal    140000
 841    842          70       RM  ...        WD         Normal    157500
 842    843          80       RL  ...        WD         Normal    174900
 843    844          90       RL  ...        WD         Normal    141000
 844    845          50       RM  ...        WD         Normal    153900
 845    846          85       RL  ...        WD         Normal    171000
 846    847          60       RL  ...        WD         Normal    213000
 847    848          20       RL  ...        WD         Normal    133500
 848    849          50       RL  ...        WD         Normal    240000
 849    850          80       RL  ...        WD         Normal    187000
 850    851         120       RM  ...        WD         Normal    131500
 851    852         120       RL  ...        WD         Normal    215000
 852    853          75       RL  ...        WD         Normal    164000
 853    854          80       RL  ...        WD         Normal    158000
 854    855          20       RL  ...        WD        Abnorml    170000
 855    856          20       RL  ...        WD         Normal    127000
 856    857          80       RL  ...        WD         Normal    147000
 857    858          60       RL  ...        WD         Normal    174000
 858    859          20       RL  ...        WD         Family    152000
 859    860          60       RL  ...        WD         Normal    250000
 860    861          50       RL  ...        WD         Normal    189950
 861    862         190       RL  ...        WD         Normal    131500
 862    863          20       RL  ...        WD         Normal    152000
 863    864          20       RL  ...        WD         Normal    132500
 864    865          20       FV  ...       New        Partial    250580
 865    866          20       RL  ...        WD         Normal    148500
 866    867          20       RL  ...       New        Partial    248900
 867    868          20       RL  ...        WD         Normal    129000
 868    869          60       RL  ...        WD         Normal    169000
 869    870          60       RL  ...        WD         Normal    236000
 870    871          20       RL  ...        WD         Normal    109500
 871    872          60       RL  ...        WD         Normal    200500
 872    873          20       RL  ...        WD         Normal    116000
 873    874          40       RL  ...        WD         Normal    133000
 874    875          50       RM  ...        WD        Abnorml     66500
 875    876          60       FV  ...       New        Partial    303477
 876    877          20       RL  ...        WD         Normal    132250
 877    878          60       RL  ...        WD         Normal    350000
 878    879          85       RL  ...        WD         Normal    148000
 879    880          20       RL  ...        WD         Normal    136500
 880    881          20       RL  ...        WD         Normal    157000
 881    882          50       RL  ...        WD         Normal    187500
 882    883          60       RL  ...        WD         Normal    178000
 883    884          75       RL  ...        WD         Normal    118500
 884    885          20       RL  ...        WD         Normal    100000
 885    886         120       FV  ...       CWD        Abnorml    328900
 886    887          90       RL  ...        WD         Family    145000
 887    888          50       RL  ...        WD         Normal    135500
 888    889          20       RL  ...        WD         Normal    268000
 889    890          20       RL  ...        WD         Normal    149500
 890    891          50       RL  ...        WD         Normal    122900
 891    892          60       RL  ...        WD         Normal    172500
 892    893          20       RL  ...        WD         Normal    154500
 893    894          20       RL  ...        WD         Normal    165000
 894    895          90       RL  ...        WD         Alloca    118858
 895    896          60       RL  ...        WD         Normal    140000
 896    897          30       RM  ...        WD        Abnorml    106500
 897    898          90       RL  ...        WD         Alloca    142953
 898    899          20       RL  ...       New        Partial    611657
 899    900          20       RL  ...        WD         Normal    135000
 900    901          20       RL  ...        WD         Normal    110000
 901    902          20       RL  ...        WD         Normal    153000
 902    903          60       RL  ...        WD         Normal    180000
 903    904          20       RL  ...       New        Partial    240000
 904    905          20       RL  ...        WD         Normal    125500
 905    906          20       RL  ...        WD         Normal    128000
 906    907          20       RL  ...        WD         Normal    255000
 907    908          50       RL  ...        WD         Normal    250000
 908    909          20       RL  ...        WD         Normal    131000
 909    910          60       RL  ...        WD         Normal    174000
 910    911          90       RL  ...        WD         Normal    154300
 911    912          20       RL  ...        WD         Normal    143500
 912    913          30       RM  ...        WD        Abnorml     88000
 913    914          90       RH  ...        WD         Normal    145000
 914    915         160       FV  ...       New        Partial    173733
 915    916         160       RM  ...        WD         Normal     75000
 916    917          20  C (all)  ...        WD        Abnorml     35311
 917    918          20       RL  ...        WD         Normal    135000
 918    919          60       RL  ...        WD         Normal    238000
 919    920          20       RL  ...        WD         Normal    176500
 920    921          60       RL  ...        WD         Normal    201000
 921    922          90       RL  ...        WD         Normal    145900
 922    923          20       RL  ...       New        Partial    169990
 923    924         120       RL  ...        WD         Normal    193000
 924    925          20       RL  ...        WD         Normal    207500
 925    926          20       RL  ...        WD        Abnorml    175000
 926    927          60       RL  ...        WD         Normal    285000
 927    928          60       RL  ...        WD         Normal    176000
 928    929          20       RL  ...        WD         Normal    236500
 929    930          60       RL  ...        WD         Normal    222000
 930    931          20       RL  ...        WD         Normal    201000
 931    932          20       RL  ...        WD         Normal    117500
 932    933          20       RL  ...        WD         Normal    320000
 933    934          20       RL  ...        WD         Normal    190000
 934    935          20       RL  ...        WD         Normal    242000
 935    936          30       RL  ...        WD         Normal     79900
 936    937          20       RL  ...        WD         Normal    184900
 937    938          60       RL  ...        WD         Normal    253000
 938    939          60       RL  ...       New        Partial    239799
 939    940          70       RL  ...       COD         Normal    244400
 940    941          90       RL  ...        WD         Normal    150900
 941    942          60       RL  ...        WD         Normal    214000
 942    943          90       RL  ...       Oth        Abnorml    150000
 943    944          90       RL  ...        WD         Normal    143000
 944    945          20       RL  ...       COD        Abnorml    137500
 945    946          50       RM  ...        WD         Normal    124900
 946    947          80       RL  ...        WD         Normal    143000
 947    948          20       RL  ...        WD         Normal    270000
 948    949          60       RL  ...        WD         Normal    192500
 949    950          20       RL  ...        WD         Normal    197500
 950    951          20       RL  ...        WD         Normal    129000
 951    952          20       RH  ...        WD        Abnorml    119900
 952    953          85       RL  ...        WD         Normal    133900
 953    954          60       RL  ...        WD         Normal    172000
 954    955          90       RL  ...        WD        AdjLand    127500
 955    956          90       RH  ...        WD         Normal    145000
 956    957         160       RM  ...        WD         Normal    124000
 957    958          20       RL  ...        WD         Normal    132000
 958    959          20       RL  ...        WD         Normal    185000
 959    960         160       FV  ...        WD         Normal    155000
 960    961          20       RL  ...        WD         Normal    116500
 961    962          60       RL  ...        WD         Normal    272000
 962    963         160       RL  ...        WD         Normal    155000
 963    964          20       RL  ...        WD         Normal    239000
 964    965          60       RL  ...        WD         Normal    214900
 965    966          60       RL  ...       New        Partial    178900
 966    967          50       RL  ...        WD         Normal    160000
 967    968          20       RL  ...        WD         Normal    135000
 968    969          50       RM  ...        WD        Abnorml     37900
 969    970         190       RL  ...     ConLD         Normal    140000
 970    971          50       RL  ...        WD        Abnorml    135000
 971    972         160       RL  ...        WD         Normal    173000
 972    973         120       RL  ...        WD         Normal     99500
 973    974          20       FV  ...       New        Partial    182000
 974    975          70       RL  ...        WD         Normal    167500
 975    976         160       FV  ...        WD         Normal    165000
 976    977          30       RL  ...        WD         Normal     85500
 977    978         120       FV  ...       New        Partial    199900
 978    979          20       RL  ...        WD        Abnorml    110000
 979    980          20       RL  ...        WD         Normal    139000
 980    981          85       RL  ...        WD         Normal    178400
 981    982          60       RL  ...        WD         Normal    336000
 982    983          20       RL  ...        WD         Normal    159895
 983    984          60       RL  ...        WD         Normal    255900
 984    985          90       RL  ...       COD         Normal    126000
 985    986         190       RL  ...     ConLD         Normal    125000
 986    987          50       RM  ...        WD         Normal    117000
 987    988          20       RL  ...       New        Partial    395192
 988    989          60       RL  ...        WD         Normal    195000
 989    990          60       FV  ...       New        Partial    197000
 990    991          60       RL  ...        WD         Normal    348000
 991    992          70       RM  ...        WD         Normal    168000
 992    993          60       RL  ...        WD         Normal    187000
 993    994          60       RL  ...       New        Partial    173900
 994    995          20       RL  ...        WD         Normal    337500
 995    996          50       RL  ...        WD        Abnorml    121600
 996    997          20       RL  ...       COD         Normal    136500
 997    998          20       RL  ...        WD         Normal    185000
 998    999          30       RM  ...        WD         Normal     91000
 999   1000          20       RL  ...        WD         Normal    206000
 1000  1001          20       RL  ...        WD         Normal     82000
 1001  1002          30       RL  ...        WD        Abnorml     86000
 1002  1003          20       RL  ...        WD         Normal    232000
 1003  1004          90       RL  ...        WD         Normal    136905
 1004  1005         120       RL  ...        WD         Normal    181000
 1005  1006          80       RL  ...        WD         Normal    149900
 1006  1007          20       RL  ...        WD         Normal    163500
 1007  1008         160       RM  ...        WD         Normal     88000
 1008  1009          20       RL  ...        WD         Normal    240000
 1009  1010          50       RL  ...        WD         Normal    102000
 1010  1011          50       RL  ...        WD         Normal    135000
 1011  1012          90       RL  ...        WD         Normal    100000
 1012  1013          70       RL  ...        WD         Normal    165000
 1013  1014          30       RM  ...        WD         Normal     85000
 1014  1015          20       RL  ...        WD         Normal    119200
 1015  1016          60       RL  ...        WD         Normal    227000
 1016  1017          20       RL  ...        WD         Normal    203000
 1017  1018         120       RL  ...       COD        Abnorml    187500
 1018  1019          80       RL  ...        WD         Normal    160000
 1019  1020         120       RL  ...        WD         Normal    213490
 1020  1021          20       RL  ...        WD         Normal    176000
 1021  1022          20       RL  ...       New        Partial    194000
 1022  1023          50       RM  ...        WD         Normal     87000
 1023  1024         120       RL  ...        WD         Normal    191000
 1024  1025          20       RL  ...       COD        Abnorml    287000
 1025  1026          20       RL  ...        WD         Normal    112500
 1026  1027          20       RL  ...        WD         Normal    167500
 1027  1028          20       RL  ...       New        Partial    293077
 1028  1029          50       RL  ...        WD         Normal    105000
 1029  1030         160       RM  ...        WD         Normal    118000
 1030  1031         190       RH  ...        WD         Normal    160000
 1031  1032          75       RL  ...        WD         Normal    197000
 1032  1033          60       RL  ...        WD        Abnorml    310000
 1033  1034          20       RL  ...        WD         Normal    230000
 1034  1035          30       RL  ...        WD         Normal    119750
 1035  1036          20       RL  ...        WD         Normal     84000
 1036  1037          20       RL  ...        WD         Normal    315500
 1037  1038          60       RL  ...        WD         Normal    287000
 1038  1039         160       RM  ...        WD         Normal     97000
 1039  1040         180       RM  ...        WD         Normal     80000
 1040  1041          20       RL  ...        WD         Normal    155000
 1041  1042          60       RL  ...        WD         Normal    173000
 1042  1043         120       RL  ...        WD         Normal    196000
 1043  1044          60       RL  ...        WD         Normal    262280
 1044  1045          20       RL  ...        WD         Normal    278000
 1045  1046          20       RL  ...        WD         Normal    139600
 1046  1047          60       RL  ...       New        Partial    556581
 1047  1048          20       RL  ...        WD         Normal    145000
 1048  1049          20       RL  ...        WD         Normal    115000
 1049  1050          20       RL  ...        WD        Abnorml     84900
 1050  1051          20       RL  ...       New        Partial    176485
 1051  1052          20       RL  ...       New        Partial    200141
 1052  1053          60       RL  ...        WD         Normal    165000
 1053  1054          20       RL  ...        WD         Normal    144500
 1054  1055          60       RL  ...        WD         Normal    255000
 1055  1056          20       RL  ...       COD        Abnorml    180000
 1056  1057         120       RL  ...        WD         Normal    185850
 1057  1058          60       RL  ...        WD         Normal    248000
 1058  1059          60       RL  ...        WD         Normal    335000
 1059  1060          50       RL  ...        WD         Normal    220000
 1060  1061         120       RL  ...        WD         Normal    213500
 1061  1062          30  C (all)  ...     ConLD         Normal     81000
 1062  1063         190       RM  ...        WD         Normal     90000
 1063  1064          30       RM  ...        WD         Normal    110500
 1064  1065          20       RL  ...        WD         Normal    154000
 1065  1066          60       RL  ...        WD         Normal    328000
 1066  1067          60       RL  ...        WD         Normal    178000
 1067  1068          60       RL  ...        WD         Normal    167900
 1068  1069         160       RM  ...        WD         Normal    151400
 1069  1070          45       RL  ...        WD         Normal    135000
 1070  1071          20       RL  ...        WD         Normal    135000
 1071  1072          60       RL  ...        WD         Normal    154000
 1072  1073          50       RL  ...        WD         Normal     91500
 1073  1074          60       RL  ...        WD         Normal    159500
 1074  1075          20       RL  ...        WD         Normal    194000
 1075  1076          70       RL  ...       CWD         Normal    219500
 1076  1077          50       RL  ...        WD         Normal    170000
 1077  1078          20       RL  ...        WD        Abnorml    138800
 1078  1079         120       RM  ...        WD         Normal    155900
 1079  1080          20       RL  ...        WD         Normal    126000
 1080  1081          20       RL  ...       COD        Abnorml    145000
 1081  1082          20       RL  ...        WD         Normal    133000
 1082  1083          20       RL  ...        WD         Normal    192000
 1083  1084          20       RL  ...        WD         Normal    160000
 1084  1085          60       RL  ...        WD         Normal    187500
 1085  1086          85       RL  ...        WD         Normal    147000
 1086  1087         160       RM  ...        WD         Normal     83500
 1087  1088          60       FV  ...        WD         Normal    252000
 1088  1089         160       RM  ...        WD         Normal    137500
 1089  1090         120       FV  ...        WD         Normal    197000
 1090  1091          90       RL  ...        WD         Normal     92900
 1091  1092         160       FV  ...        WD         Normal    160000
 1092  1093          50       RL  ...        WD         Normal    136500
 1093  1094          20       RL  ...        WD         Normal    146000
 1094  1095          20       RL  ...        WD         Normal    129000
 1095  1096          20       RL  ...        WD         Normal    176432
 1096  1097          70       RM  ...        WD         Normal    127000
 1097  1098         120       RL  ...        WD         Normal    170000
 1098  1099          50       RM  ...        WD         Normal    128000
 1099  1100          20       RL  ...       COD        Abnorml    157000
 1100  1101          30       RL  ...        WD         Normal     60000
 1101  1102          20       RL  ...        WD         Normal    119500
 1102  1103          20       RL  ...        WD         Family    135000
 1103  1104          20       RL  ...        WD         Normal    159500
 1104  1105         160       RM  ...        WD         Normal    106000
 1105  1106          60       RL  ...        WD         Normal    325000
 1106  1107          20       RL  ...        WD         Normal    179900
 1107  1108          60       RL  ...       New        Partial    274725
 1108  1109          60       RL  ...        WD        Abnorml    181000
 1109  1110          20       RL  ...        WD         Normal    280000
 1110  1111          60       RL  ...        WD         Normal    188000
 1111  1112          60       RL  ...        WD         Normal    205000
 1112  1113          20       RL  ...        WD         Normal    129900
 1113  1114          20       RL  ...        WD         Normal    134500
 1114  1115          20       RL  ...        WD         Normal    117000
 1115  1116          20       RL  ...       New        Partial    318000
 1116  1117          80       RL  ...        WD         Normal    184100
 1117  1118          20       RL  ...        WD         Normal    130000
 1118  1119          80       RL  ...        WD         Normal    140000
 1119  1120          20       RL  ...        WD         Normal    133700
 1120  1121          30       RM  ...        WD         Normal    118400
 1121  1122          20       RL  ...       New        Partial    212900
 1122  1123          20       RL  ...       COD        Abnorml    112000
 1123  1124          20       RL  ...        WD         Normal    118000
 1124  1125          80       RL  ...        WD         Normal    163900
 1125  1126          20       RL  ...        WD         Normal    115000
 1126  1127         120       RL  ...        WD         Normal    174000
 1127  1128          20       RL  ...        WD         Family    259000
 1128  1129          60       RL  ...        WD         Normal    215000
 1129  1130          90       RM  ...        WD         Normal    140000
 1130  1131          50       RL  ...        WD         Normal    135000
 1131  1132          20       RL  ...       Oth        Abnorml     93500
 1132  1133          70       RM  ...        WD         Normal    117500
 1133  1134          60       RL  ...        WD         Normal    239500
 1134  1135          60       RL  ...        WD         Normal    169000
 1135  1136          30       RM  ...        WD         Normal    102000
 1136  1137          50       RL  ...        WD        Abnorml    119000
 1137  1138          50       RL  ...        WD         Normal     94000
 1138  1139          20       RL  ...        WD         Normal    196000
 1139  1140          30       RL  ...        WD         Normal    144000
 1140  1141          20       RL  ...       COD        Abnorml    139000
 1141  1142          60       RL  ...        WD         Normal    197500
 1142  1143          60       RL  ...       New        Partial    424870
 1143  1144          20       RL  ...        WD         Normal     80000
 1144  1145         190       RL  ...        WD         Normal     80000
 1145  1146          50       RM  ...        WD         Family    149000
 1146  1147          20       RL  ...        WD         Normal    180000
 1147  1148          70       RL  ...        WD         Normal    174500
 1148  1149          50       RM  ...        WD         Normal    116900
 1149  1150          70       RM  ...        WD         Normal    143000
 1150  1151          20       RL  ...        WD         Normal    124000
 1151  1152          20       RL  ...        WD         Normal    149900
 1152  1153          20       RL  ...        WD        Abnorml    230000
 1153  1154          30       RM  ...        WD         Normal    120500
 1154  1155          60       RL  ...        WD         Normal    201800
 1155  1156          20       RL  ...        WD         Normal    218000
 1156  1157          80       RL  ...        WD         Normal    179900
 1157  1158         120       RL  ...        WD         Normal    230000
 1158  1159          20       RL  ...     ConLD        Partial    235128
 1159  1160          60       RL  ...        WD         Normal    185000
 1160  1161         160       RL  ...        WD         Normal    146000
 1161  1162          20       RL  ...        WD         Normal    224000
 1162  1163          20       RL  ...        WD         Normal    129000
 1163  1164          90       RL  ...        WD         Alloca    108959
 1164  1165          80       RL  ...        WD         Normal    194000
 1165  1166          20       RL  ...       New        Partial    233170
 1166  1167          20       RL  ...        WD         Normal    245350
 1167  1168          60       RL  ...        WD         Normal    173000
 1168  1169          70       RL  ...        WD         Normal    235000
 1169  1170          60       RL  ...        WD         Normal    625000
 1170  1171          80       RL  ...        WD         Normal    171000
 1171  1172          20       RL  ...        WD         Normal    163000
 1172  1173         160       FV  ...        WD         Normal    171900
 1173  1174          50       RL  ...        WD         Normal    200500
 1174  1175          70       RL  ...        WD         Normal    239000
 1175  1176          50       RL  ...        WD         Normal    285000
 1176  1177          20       RL  ...        WD         Normal    119500
 1177  1178          50       RM  ...        WD         Normal    115000
 1178  1179          50       RL  ...        WD         Normal    154900
 1179  1180          20       RL  ...        WD         Normal     93000
 1180  1181          60       RL  ...        WD         Normal    250000
 1181  1182         120       RM  ...       New        Partial    392500
 1182  1183          60       RL  ...        WD        Abnorml    745000
 1183  1184          30       RL  ...        WD         Normal    120000
 1184  1185          20       RL  ...        WD         Normal    186700
 1185  1186          50       RL  ...        WD         Normal    104900
 1186  1187         190       RL  ...        WD        Abnorml     95000
 1187  1188          20       RL  ...        WD         Normal    262000
 1188  1189          60       RL  ...        WD         Normal    195000
 1189  1190          60       RL  ...        WD         Normal    189000
 1190  1191         190       RL  ...        WD         Normal    168000
 1191  1192         160       FV  ...        WD         Normal    174000
 1192  1193          50       RM  ...        WD         Normal    125000
 1193  1194         120       RM  ...        WD         Normal    165000
 1194  1195          60       RL  ...        WD         Normal    158000
 1195  1196          60       RL  ...        WD         Normal    176000
 1196  1197          60       RL  ...       New        Partial    219210
 1197  1198          75       RM  ...     ConLw         Normal    144000
 1198  1199          20       RL  ...        WD         Normal    178000
 1199  1200          20       RL  ...        WD         Normal    148000
 1200  1201          20       RL  ...       Oth        Abnorml    116050
 1201  1202          60       RL  ...        WD         Normal    197900
 1202  1203          50       RM  ...        WD         Normal    117000
 1203  1204          20       RL  ...        WD         Normal    213000
 1204  1205          20       RL  ...        WD         Normal    153500
 1205  1206          20       RL  ...        WD         Normal    271900
 1206  1207          20       RH  ...        WD         Normal    107000
 1207  1208          20       RL  ...        WD         Normal    200000
 1208  1209          20       RL  ...        WD         Normal    140000
 1209  1210          20       RL  ...       New        Partial    290000
 1210  1211          60       RL  ...        WD         Normal    189000
 1211  1212          50       RL  ...        WD         Normal    164000
 1212  1213          30       RL  ...        WD         Normal    113000
 1213  1214          80       RL  ...        WD         Normal    145000
 1214  1215          85       RL  ...        WD         Normal    134500
 1215  1216          20       RL  ...        WD         Normal    125000
 1216  1217          90       RM  ...        WD         Normal    112000
 1217  1218          20       FV  ...       New        Partial    229456
 1218  1219          50       RM  ...        WD         Normal     80500
 1219  1220         160       RM  ...        WD        Abnorml     91500
 1220  1221          20       RL  ...        WD        Abnorml    115000
 1221  1222          20       RL  ...        WD         Normal    134000
 1222  1223          50       RL  ...        WD         Normal    143000
 1223  1224          20       RL  ...        WD         Normal    137900
 1224  1225          60       RL  ...        WD         Normal    184000
 1225  1226          80       RL  ...        WD         Normal    145000
 1226  1227          60       RL  ...        WD         Normal    214000
 1227  1228          20       RL  ...        WD         Normal    147000
 1228  1229         120       RL  ...       New        Partial    367294
 1229  1230          80       RL  ...        WD         Normal    127000
 1230  1231          90       RL  ...        WD         Normal    190000
 1231  1232          90       RL  ...        WD         Normal    132500
 1232  1233          90       RL  ...        WD         Normal    101800
 1233  1234          20       RL  ...       COD        Abnorml    142000
 1234  1235          70       RH  ...        WD        Abnorml    130000
 1235  1236          70       RL  ...        WD         Normal    138887
 1236  1237         160       RL  ...        WD         Normal    175500
 1237  1238          60       RL  ...        WD         Normal    195000
 1238  1239          20       RL  ...        WD        Abnorml    142500
 1239  1240          20       RL  ...        WD         Normal    265900
 1240  1241          60       RL  ...        WD         Normal    224900
 1241  1242          20       RL  ...       New        Partial    248328
 1242  1243          85       RL  ...        WD         Family    170000
 1243  1244          20       RL  ...       New        Partial    465000
 1244  1245          70       RL  ...        WD         Normal    230000
 1245  1246          80       RL  ...        WD        Abnorml    178000
 1246  1247          60       FV  ...       New        Partial    186500
 1247  1248          80       RL  ...        WD         Normal    169900
 1248  1249          75       RM  ...        WD         Normal    129500
 1249  1250          20       RL  ...        WD         Normal    119000
 1250  1251          20       RL  ...        WD         Normal    244000
 1251  1252         120       RL  ...        WD         Normal    171750
 1252  1253          20       RL  ...        WD         Normal    130000
 1253  1254          60       RL  ...        WD         Normal    294000
 1254  1255          60       RL  ...        WD         Normal    165400
 1255  1256          50       RM  ...        WD         Normal    127500
 1256  1257          20       RL  ...        WD         Normal    301500
 1257  1258          30       RL  ...        WD         Normal     99900
 1258  1259          80       RL  ...        WD         Normal    190000
 1259  1260          20       RL  ...        WD         Normal    151000
 1260  1261          60       RL  ...        WD         Normal    181000
 1261  1262          20       RL  ...        WD         Normal    128900
 1262  1263          50       RL  ...        WD         Normal    161500
 1263  1264          70       RL  ...        WD         Normal    180500
 1264  1265         120       RH  ...       COD        Abnorml    181000
 1265  1266         160       FV  ...        WD         Normal    183900
 1266  1267         190       RM  ...        WD         Normal    122000
 1267  1268          20       RL  ...        WD         Normal    378500
 1268  1269          50       RL  ...        WD         Normal    381000
 1269  1270          50       RL  ...        WD         Normal    144000
 1270  1271          40       RL  ...        WD         Normal    260000
 1271  1272          20       RL  ...        WD         Normal    185750
 1272  1273          20       RL  ...        WD         Normal    137000
 1273  1274          80       RL  ...        WD         Normal    177000
 1274  1275          50       RL  ...        WD         Normal    139000
 1275  1276          90       RL  ...        WD         Normal    137000
 1276  1277          60       RL  ...        WD         Normal    162000
 1277  1278          80       RL  ...        WD         Normal    197900
 1278  1279          60       RL  ...        WD         Normal    237000
 1279  1280          50  C (all)  ...       COD        Abnorml     68400
 1280  1281          20       RL  ...        WD         Normal    227000
 1281  1282          20       RL  ...        WD         Normal    180000
 1282  1283          20       RL  ...        WD         Normal    150500
 1283  1284          90       RL  ...        WD         Normal    139000
 1284  1285          50       RL  ...        WD         Normal    169000
 1285  1286          50       RM  ...        WD         Normal    132500
 1286  1287          20       RL  ...        WD         Normal    143000
 1287  1288          20       RL  ...        WD         Normal    190000
 1288  1289         120       RL  ...        WD         Normal    278000
 1289  1290          60       RL  ...       New        Partial    281000
 1290  1291          80       RL  ...        WD         Normal    180500
 1291  1292         160       RM  ...        WD         Normal    119500
 1292  1293          70       RM  ...        WD         Normal    107500
 1293  1294          60       RL  ...        WD         Normal    162900
 1294  1295          20       RL  ...        WD         Normal    115000
 1295  1296          20       RL  ...        WD         Normal    138500
 1296  1297          20       RL  ...        WD         Normal    155000
 1297  1298         180       RM  ...       New        Partial    140000
 1298  1299          60       RL  ...       New        Partial    160000
 1299  1300          20       RL  ...        WD         Normal    154000
 1300  1301          60       RL  ...        WD         Normal    225000
 1301  1302          70       RL  ...        WD         Normal    177500
 1302  1303          60       RL  ...        WD         Normal    290000
 1303  1304          20       RL  ...        WD         Normal    232000
 1304  1305         160       RM  ...        WD         Normal    130000
 1305  1306          20       RL  ...        WD         Normal    325000
 1306  1307         120       RL  ...       New        Partial    202500
 1307  1308          20       RL  ...        WD         Normal    138000
 1308  1309          20       RM  ...        WD         Normal    147000
 1309  1310          20       RL  ...        WD         Normal    179200
 1310  1311          20       RL  ...        WD         Normal    335000
 1311  1312          20       RL  ...       New        Partial    203000
 1312  1313          60       RL  ...        WD         Normal    302000
 1313  1314          60       RL  ...        WD         Normal    333168
 1314  1315          20       RL  ...        WD         Normal    119000
 1315  1316          60       RL  ...        WD         Normal    206900
 1316  1317          20       RL  ...        WD         Normal    295493
 1317  1318         120       FV  ...       New        Partial    208900
 1318  1319          20       RL  ...        WD         Normal    275000
 1319  1320          20       RL  ...        WD         Normal    111000
 1320  1321          20       RL  ...        WD         Normal    156500
 1321  1322          20       RL  ...        WD         Normal     72500
 1322  1323          60       RL  ...        WD         Normal    190000
 1323  1324          30       RL  ...        WD         Normal     82500
 1324  1325          20       RL  ...       New        Partial    147000
 1325  1326          30       RM  ...        WD         Normal     55000
 1326  1327          30       RH  ...        WD         Normal     79000
 1327  1328          20       RL  ...        WD         Normal    130500
 1328  1329          50       RM  ...        WD         Normal    256000
 1329  1330          60       RL  ...        WD         Normal    176500
 1330  1331          20       RL  ...        WD         Normal    227000
 1331  1332          80       RL  ...        WD         Normal    132500
 1332  1333          20       RL  ...        WD         Normal    100000
 1333  1334          50       RM  ...        WD         Normal    125500
 1334  1335         160       RM  ...        WD         Normal    125000
 1335  1336          20       RL  ...        WD         Normal    167900
 1336  1337          90       RL  ...        WD         Normal    135000
 1337  1338          30       RM  ...        WD         Normal     52500
 1338  1339          60       RL  ...        WD         Normal    200000
 1339  1340          20       RL  ...        WD         Normal    128500
 1340  1341          20       RL  ...        WD         Normal    123000
 1341  1342          20       RL  ...        WD         Normal    155000
 1342  1343          60       RL  ...        WD         Normal    228500
 1343  1344          50       RL  ...        WD         Normal    177000
 1344  1345          60       RL  ...       New        Partial    155835
 1345  1346          30       RM  ...        WD         Normal    108500
 1346  1347          20       RL  ...        WD         Normal    262500
 1347  1348          20       RL  ...       New        Partial    283463
 1348  1349          20       RL  ...        WD         Normal    215000
 1349  1350          70       RM  ...        WD         Normal    122000
 1350  1351          90       RL  ...        WD         Normal    200000
 1351  1352          60       RL  ...        WD         Normal    171000
 1352  1353          50       RM  ...        WD         Normal    134900
 1353  1354          50       RL  ...        WD         Normal    410000
 1354  1355          60       RL  ...        WD         Normal    235000
 1355  1356          80       RL  ...        WD         Normal    170000
 1356  1357          20       RL  ...        WD         Normal    110000
 1357  1358          20       RL  ...        WD         Normal    149900
 1358  1359         160       FV  ...        WD         Normal    177500
 1359  1360          20       RL  ...        WD         Normal    315000
 1360  1361          70       RL  ...        WD         Normal    189000
 1361  1362          20       RL  ...        WD         Normal    260000
 1362  1363          50       RL  ...        WD         Normal    104900
 1363  1364          60       RL  ...       New        Partial    156932
 1364  1365         160       FV  ...        WD        Abnorml    144152
 1365  1366          60       FV  ...        WD         Normal    216000
 1366  1367          60       RL  ...        WD        Abnorml    193000
 1367  1368         160       RM  ...        WD         Normal    127000
 1368  1369         120       RM  ...        WD         Normal    144000
 1369  1370          20       RL  ...        WD         Normal    232000
 1370  1371          50       RL  ...        WD         Normal    105000
 1371  1372          80       RL  ...        WD         Normal    165500
 1372  1373          60       RL  ...        WD         Normal    274300
 1373  1374          20       RL  ...        WD         Normal    466500
 1374  1375          60       FV  ...        WD         Normal    250000
 1375  1376          20       RL  ...       New        Partial    239000
 1376  1377          30       RL  ...        WD         Normal     91000
 1377  1378          50       RL  ...        WD         Normal    117000
 1378  1379         160       RM  ...        WD         Normal     83000
 1379  1380          80       RL  ...        WD         Normal    167500
 1380  1381          30       RL  ...        WD         Normal     58500
 1381  1382          20       RL  ...        WD         Normal    237500
 1382  1383          70       RM  ...        WD         Normal    157000
 1383  1384          30       RL  ...        WD         Normal    112000
 1384  1385          50       RL  ...        WD         Normal    105000
 1385  1386          50       RM  ...        WD         Normal    125500
 1386  1387          60       RL  ...        WD         Normal    250000
 1387  1388          50       RM  ...       CWD         Family    136000
 1388  1389          20       RL  ...        WD         Normal    377500
 1389  1390          50       RM  ...        WD         Normal    131000
 1390  1391          20       RL  ...        WD         Normal    235000
 1391  1392          90       RL  ...        WD         Normal    124000
 1392  1393          85       RL  ...        WD         Normal    123000
 1393  1394         190       RM  ...        WD         Normal    163000
 1394  1395         120       RL  ...       New        Partial    246578
 1395  1396          60       RL  ...        WD         Normal    281213
 1396  1397          20       RL  ...        WD         Normal    160000
 1397  1398          70       RM  ...        WD         Normal    137500
 1398  1399          50       RL  ...        WD         Normal    138000
 1399  1400          50       RL  ...        WD         Normal    137450
 1400  1401          50       RM  ...        WD         Normal    120000
 1401  1402          60       RL  ...        WD         Normal    193000
 1402  1403          20       RL  ...       New        Partial    193879
 1403  1404          20       RL  ...        WD         Normal    282922
 1404  1405          50       RL  ...        WD         Family    105000
 1405  1406         120       RM  ...        WD         Normal    275000
 1406  1407          85       RL  ...        WD         Normal    133000
 1407  1408          20       RL  ...        WD         Normal    112000
 1408  1409          70       RM  ...        WD         Normal    125500
 1409  1410          60       RL  ...        WD         Normal    215000
 1410  1411          60       RL  ...        WD         Normal    230000
 1411  1412          50       RL  ...        WD         Normal    140000
 1412  1413          90       RL  ...        WD         Normal     90000
 1413  1414          20       RL  ...       COD        Abnorml    257000
 1414  1415          50       RL  ...        WD         Normal    207000
 1415  1416         120       RL  ...        WD         Normal    175900
 1416  1417         190       RM  ...        WD         Normal    122500
 1417  1418          60       RL  ...        WD         Normal    340000
 1418  1419          20       RL  ...       COD         Normal    124000
 1419  1420          20       RL  ...        WD         Normal    223000
 1420  1421          60       RL  ...        WD         Normal    179900
 1421  1422         120       RL  ...        WD         Normal    127500
 1422  1423         120       RM  ...        WD         Normal    136500
 1423  1424          80       RL  ...        WD         Alloca    274970
 1424  1425          20       RL  ...        WD         Normal    144000
 1425  1426          20       RL  ...        WD         Normal    142000
 1426  1427          60       RL  ...        WD         Normal    271000
 1427  1428          50       RL  ...        WD         Normal    140000
 1428  1429          30       RM  ...        WD        Abnorml    119000
 1429  1430          20       RL  ...        WD         Normal    182900
 1430  1431          60       RL  ...        WD         Normal    192140
 1431  1432         120       RL  ...        WD         Normal    143750
 1432  1433          30       RL  ...        WD         Normal     64500
 1433  1434          60       RL  ...        WD         Normal    186500
 1434  1435          20       RL  ...        WD         Normal    160000
 1435  1436          20       RL  ...       COD        Abnorml    174000
 1436  1437          20       RL  ...        WD         Normal    120500
 1437  1438          20       RL  ...       New        Partial    394617
 1438  1439          20       RM  ...        WD         Normal    149700
 1439  1440          60       RL  ...        WD         Normal    197000
 1440  1441          70       RL  ...        WD         Normal    191000
 1441  1442         120       RM  ...        WD         Normal    149300
 1442  1443          60       FV  ...        WD         Normal    310000
 1443  1444          30       RL  ...        WD         Normal    121000
 1444  1445          20       RL  ...        WD         Normal    179600
 1445  1446          85       RL  ...        WD         Normal    129000
 1446  1447          20       RL  ...        WD         Normal    157900
 1447  1448          60       RL  ...        WD         Normal    240000
 1448  1449          50       RL  ...        WD         Normal    112000
 1449  1450         180       RM  ...        WD        Abnorml     92000
 1450  1451          90       RL  ...        WD         Normal    136000
 1451  1452          20       RL  ...       New        Partial    287090
 1452  1453         180       RM  ...        WD         Normal    145000
 1453  1454          20       RL  ...        WD        Abnorml     84500
 1454  1455          20       FV  ...        WD         Normal    185000
 1455  1456          60       RL  ...        WD         Normal    175000
 1456  1457          20       RL  ...        WD         Normal    210000
 1457  1458          70       RL  ...        WD         Normal    266500
 1458  1459          20       RL  ...        WD         Normal    142125
 1459  1460          20       RL  ...        WD         Normal    147500
 
 [1460 rows x 81 columns],
         Id  MSSubClass MSZoning  ...  YrSold  SaleType SaleCondition
 0     1461          20       RH  ...    2010        WD        Normal
 1     1462          20       RL  ...    2010        WD        Normal
 2     1463          60       RL  ...    2010        WD        Normal
 3     1464          60       RL  ...    2010        WD        Normal
 4     1465         120       RL  ...    2010        WD        Normal
 5     1466          60       RL  ...    2010        WD        Normal
 6     1467          20       RL  ...    2010        WD        Normal
 7     1468          60       RL  ...    2010        WD        Normal
 8     1469          20       RL  ...    2010        WD        Normal
 9     1470          20       RL  ...    2010        WD        Normal
 10    1471         120       RH  ...    2010        WD        Normal
 11    1472         160       RM  ...    2010       COD        Normal
 12    1473         160       RM  ...    2010        WD        Normal
 13    1474         160       RL  ...    2010        WD        Normal
 14    1475         120       RL  ...    2010        WD        Normal
 15    1476          60       RL  ...    2010       New       Partial
 16    1477          20       RL  ...    2010       New       Partial
 17    1478          20       RL  ...    2010        WD        Normal
 18    1479          20       RL  ...    2010        WD        Normal
 19    1480          20       RL  ...    2010        WD        Normal
 20    1481          60       RL  ...    2010        WD        Normal
 21    1482         120       RL  ...    2010        WD        Normal
 22    1483          20       RL  ...    2010        WD        Normal
 23    1484         120       RL  ...    2010        WD        Normal
 24    1485          80       RL  ...    2010        WD        Normal
 25    1486          60       RL  ...    2010        WD        Normal
 26    1487          60       RL  ...    2010        WD        Normal
 27    1488          20       RL  ...    2010        WD        Normal
 28    1489          20       FV  ...    2010       New       Partial
 29    1490          20       FV  ...    2010        WD        Normal
 30    1491          60       RL  ...    2010        WD        Normal
 31    1492          30       RH  ...    2010        WD        Normal
 32    1493          20       RL  ...    2010        WD       Abnorml
 33    1494          60       RL  ...    2010        WD        Normal
 34    1495          60       RL  ...    2010        WD        Normal
 35    1496         120       FV  ...    2010        WD        Normal
 36    1497         160       FV  ...    2010        WD        Normal
 37    1498         160       FV  ...    2010     ConLD        Normal
 38    1499         160       FV  ...    2010        WD        Normal
 39    1500         160       FV  ...    2010        WD        Normal
 40    1501         160       FV  ...    2010        WD        Normal
 41    1502         160       FV  ...    2010        WD        Normal
 42    1503          20       FV  ...    2010       New       Partial
 43    1504          60       FV  ...    2010        WD        Normal
 44    1505          20       FV  ...    2010        WD        Normal
 45    1506          20       RL  ...    2010        WD        Normal
 46    1507          60       RL  ...    2010        WD        Normal
 47    1508          50       RL  ...    2010        WD        Normal
 48    1509          60       RL  ...    2010        WD        Normal
 49    1510          20       RL  ...    2010        WD        Normal
 50    1511          20       RL  ...    2010     ConLD        Normal
 51    1512          20       RL  ...    2010        WD        Normal
 52    1513          80       RL  ...    2010       COD        Family
 53    1514          90       RL  ...    2010       Oth       Abnorml
 54    1515          50       RL  ...    2010        WD        Normal
 55    1516          50       RL  ...    2010        WD        Normal
 56    1517          85       RL  ...    2010        WD        Normal
 57    1518          90       RL  ...    2010        WD        Normal
 58    1519          20       RL  ...    2010        WD        Normal
 59    1520          20       RL  ...    2010        WD        Normal
 60    1521          20       RL  ...    2010        WD        Normal
 61    1522          20       RL  ...    2010        WD        Normal
 62    1523          50       RL  ...    2010        WD        Normal
 63    1524          20       RL  ...    2010        WD        Normal
 64    1525          20       RL  ...    2010        WD        Normal
 65    1526         190       RL  ...    2010        WD       Abnorml
 66    1527          30       RL  ...    2010        WD        Normal
 67    1528          50       RL  ...    2010        WD        Normal
 68    1529          20       RL  ...    2010        WD        Normal
 69    1530          20       RL  ...    2010        WD        Normal
 70    1531          50       RM  ...    2010       COD       Abnorml
 71    1532          30       RM  ...    2010        WD        Normal
 72    1533          20       RM  ...    2010        WD        Normal
 73    1534          45       RM  ...    2010        WD        Normal
 74    1535          50       RM  ...    2010        WD        Normal
 75    1536          50       RM  ...    2010        WD        Normal
 76    1537          30       RM  ...    2010        WD       Abnorml
 77    1538          70       RM  ...    2010        WD       Abnorml
 78    1539          70       RM  ...    2010        WD        Normal
 79    1540         190       RM  ...    2010        WD       Abnorml
 80    1541          70       RM  ...    2010        WD        Normal
 81    1542          50       RM  ...    2010        WD        Normal
 82    1543          75       RL  ...    2010        WD        Normal
 83    1544          30       RM  ...    2010        WD        Normal
 84    1545          50       RM  ...    2010        WD       Abnorml
 85    1546          50       RM  ...    2010        WD        Normal
 86    1547          50       RM  ...    2010        WD        Normal
 87    1548          50       RM  ...    2010        WD        Normal
 88    1549          50       RM  ...    2010        WD        Normal
 89    1550          50       RM  ...    2010        WD        Normal
 90    1551          30       RM  ...    2010        WD        Normal
 91    1552          50       RM  ...    2010        WD        Normal
 92    1553          70       RM  ...    2010        WD        Normal
 93    1554          70       RM  ...    2010        WD        Normal
 94    1555          20       RL  ...    2010        WD        Normal
 95    1556          50       RL  ...    2010       COD        Normal
 96    1557         190       RL  ...    2010     ConLD        Normal
 97    1558          50       RL  ...    2010        WD        Normal
 98    1559          70  C (all)  ...    2010        WD       Abnorml
 99    1560         190       RH  ...    2010       COD        Normal
 100   1561          90       RL  ...    2010        WD        Normal
 101   1562          20       RL  ...    2010        WD        Normal
 102   1563          20       RL  ...    2010        WD        Normal
 103   1564          90       RL  ...    2010        WD        Normal
 104   1565          60       RL  ...    2010        WD        Normal
 105   1566          20       RL  ...    2010        WD        Normal
 106   1567          30       RL  ...    2010        WD        Normal
 107   1568          60       RL  ...    2010        WD        Normal
 108   1569          50       RL  ...    2010        WD        Normal
 109   1570          20       RL  ...    2010        WD        Normal
 110   1571          50       RL  ...    2010        WD        Normal
 111   1572          20       RL  ...    2010        WD        Normal
 112   1573          20       RL  ...    2010       Con       Partial
 113   1574          20       RL  ...    2010       COD        Normal
 114   1575          20       RL  ...    2010        WD        Normal
 115   1576          60       RL  ...    2010        WD        Normal
 116   1577          20       RL  ...    2010        WD        Normal
 117   1578          50       RL  ...    2010        WD        Normal
 118   1579          85       RL  ...    2010        WD        Normal
 119   1580          60       RL  ...    2010        WD        Normal
 120   1581          20       RL  ...    2010        WD        Normal
 121   1582          20       RL  ...    2010        WD        Normal
 122   1583          20       RL  ...    2010        WD        Normal
 123   1584          60       RL  ...    2010        WD        Normal
 124   1585         120       RM  ...    2010        WD        Normal
 125   1586          30       RL  ...    2010     ConLD        Normal
 126   1587          20       RL  ...    2010       Oth       Abnorml
 127   1588          20       RL  ...    2010        WD        Normal
 128   1589          50       RL  ...    2010        WD       Abnorml
 129   1590          80       RL  ...    2010        WD        Normal
 130   1591          20       RL  ...    2010        WD        Normal
 131   1592          30       RL  ...    2010        WD        Normal
 132   1593          30       RL  ...    2010        WD        Normal
 133   1594          90       RH  ...    2010        WD        Normal
 134   1595          50       RL  ...    2010        WD        Normal
 135   1596          50       RL  ...    2010        WD        Normal
 136   1597          90       RL  ...    2010        WD        Normal
 137   1598          80       RL  ...    2010        WD        Normal
 138   1599         120       RM  ...    2010        WD        Normal
 139   1600         120       RM  ...    2010        WD        Normal
 140   1601          30       RM  ...    2010     ConLw        Normal
 141   1602          50       RM  ...    2010       COD        Normal
 142   1603          30  C (all)  ...    2010        WD        Alloca
 143   1604         120       RM  ...    2010        WD        Normal
 144   1605          60       RL  ...    2010        WD        Normal
 145   1606          80       RL  ...    2010        WD        Normal
 146   1607          90       RL  ...    2010     ConLD        Normal
 147   1608          20       RL  ...    2010        WD        Normal
 148   1609          20       RL  ...    2010       New       Partial
 149   1610          60       RL  ...    2010        WD        Normal
 150   1611          20       RL  ...    2010        WD        Normal
 151   1612          20       RL  ...    2010        WD        Normal
 152   1613          20       RL  ...    2010        WD        Normal
 153   1614         120       RM  ...    2010        WD        Normal
 154   1615         160       RM  ...    2010        WD        Normal
 155   1616         160       RM  ...    2010        WD        Normal
 156   1617         160       RM  ...    2010        WD        Normal
 157   1618          20       RL  ...    2010     ConLD        Normal
 158   1619          20       RL  ...    2010        WD        Normal
 159   1620          90       RL  ...    2010        WD        Normal
 160   1621          60       RL  ...    2010        WD        Normal
 161   1622          50       RL  ...    2010        WD        Normal
 162   1623          20       RL  ...    2010        WD        Normal
 163   1624          60       RL  ...    2010        WD        Normal
 164   1625          20       RL  ...    2009        WD        Normal
 165   1626          20       RL  ...    2009        WD        Normal
 166   1627          60       RL  ...    2009        WD        Normal
 167   1628          60       RL  ...    2009        WD        Normal
 168   1629          80       RL  ...    2009        WD        Normal
 169   1630         120       RL  ...    2009        WD        Normal
 170   1631         120       RL  ...    2009        WD        Normal
 171   1632         120       RL  ...    2009        WD        Normal
 172   1633          80       RL  ...    2009        WD        Normal
 173   1634          60       RL  ...    2009        WD        Normal
 174   1635          60       RL  ...    2009        WD        Normal
 175   1636          20       RL  ...    2009        WD        Normal
 176   1637          60       RL  ...    2009        WD        Normal
 177   1638          60       RL  ...    2009        WD       Abnorml
 178   1639          20       RL  ...    2009        WD        Normal
 179   1640          60       RL  ...    2009        WD        Normal
 180   1641          20       RL  ...    2009        WD        Normal
 181   1642          60       FV  ...    2009        WD        Normal
 182   1643          60       FV  ...    2009        WD        Normal
 183   1644          60       FV  ...    2009        WD        Normal
 184   1645          20       RL  ...    2009        WD        Normal
 185   1646          20       RL  ...    2009        WD        Normal
 186   1647          20       RL  ...    2009        WD        Normal
 187   1648          20       RL  ...    2009       COD        Normal
 188   1649          20       RL  ...    2009        WD        Normal
 189   1650          20       RL  ...    2009        WD       Abnorml
 190   1651          20       RL  ...    2009        WD        Normal
 191   1652         160       RM  ...    2009        WD        Normal
 192   1653         160       RM  ...    2009        WD        Normal
 193   1654         160       RL  ...    2009        WD        Normal
 194   1655         120       RL  ...    2009        WD        Normal
 195   1656         160       RL  ...    2009        WD        Normal
 196   1657         160       RL  ...    2009        WD        Normal
 197   1658         160       RL  ...    2009        WD        Normal
 198   1659         120       RL  ...    2009        WD        Normal
 199   1660          20       RL  ...    2009        WD        Normal
 200   1661          60       RL  ...    2009        WD        Normal
 201   1662          60       RL  ...    2009       New       Partial
 202   1663          20       RL  ...    2009        WD        Normal
 203   1664          20       RL  ...    2009        WD        Normal
 204   1665          20       RL  ...    2009        WD        Normal
 205   1666          20       RL  ...    2009        WD        Normal
 206   1667          60       RL  ...    2009        WD        Family
 207   1668          20       RL  ...    2009     ConLI        Normal
 208   1669          20       RL  ...    2009        WD        Normal
 209   1670          20       RL  ...    2009        WD        Normal
 210   1671          20       RL  ...    2009        WD        Normal
 211   1672          20       RL  ...    2009        WD        Normal
 212   1673          60       RL  ...    2009        WD        Normal
 213   1674          20       RL  ...    2009        WD        Normal
 214   1675         120       RL  ...    2009        WD        Normal
 215   1676         120       RL  ...    2009        WD        Normal
 216   1677         120       RL  ...    2009        WD        Normal
 217   1678          20       RL  ...    2009        WD       Abnorml
 218   1679          20       RL  ...    2009        WD        Normal
 219   1680         120       RL  ...    2009       New       Partial
 220   1681         120       RL  ...    2009        WD        Normal
 221   1682          20       RL  ...    2009        WD        Normal
 222   1683         120       RL  ...    2009        WD        Normal
 223   1684          60       RL  ...    2009        WD        Normal
 224   1685          60       RL  ...    2009        WD        Normal
 225   1686         120       RL  ...    2009        WD        Normal
 226   1687          80       RL  ...    2009        WD        Normal
 227   1688          60       RL  ...    2009        WD        Normal
 228   1689          60       RL  ...    2009        WD        Normal
 229   1690          60       RL  ...    2009        WD        Normal
 230   1691          60       RL  ...    2009        WD        Normal
 231   1692          60       RL  ...    2009        WD        Normal
 232   1693          80       RL  ...    2009        WD        Normal
 233   1694          60       RL  ...    2009        WD        Normal
 234   1695          80       RL  ...    2009        WD        Normal
 235   1696          60       RL  ...    2009        WD        Normal
 236   1697          80       RL  ...    2009        WD        Normal
 237   1698          60       RL  ...    2009        WD        Normal
 238   1699          20       RL  ...    2009        WD        Normal
 239   1700          60       RL  ...    2009        WD        Normal
 240   1701          60       RL  ...    2009        WD        Normal
 241   1702          20       RL  ...    2009        WD        Normal
 242   1703          20       RL  ...    2009        WD        Normal
 243   1704          20       RL  ...    2009        WD        Normal
 244   1705          20       RL  ...    2009        WD        Normal
 245   1706          20       RL  ...    2009        WD        Normal
 246   1707          20       FV  ...    2009       New       Partial
 247   1708          20       FV  ...    2009        WD        Normal
 248   1709          20       FV  ...    2009        WD        Normal
 249   1710          20       FV  ...    2009        WD        Normal
 250   1711          60       FV  ...    2009        WD        Normal
 251   1712          20       FV  ...    2009       New       Partial
 252   1713          20       FV  ...    2009        WD        Normal
 253   1714          20       FV  ...    2009        WD        Normal
 254   1715          60       FV  ...    2009        WD        Normal
 255   1716          20       RL  ...    2009        WD        Normal
 256   1717          20       RL  ...    2009        WD        Normal
 257   1718          20       RL  ...    2009        WD        Normal
 258   1719          60       RL  ...    2009        WD        Normal
 259   1720          20       RL  ...    2009        WD        Normal
 260   1721          20       RL  ...    2009        WD        Normal
 261   1722          20       RL  ...    2009        WD        Normal
 262   1723          20       RL  ...    2009        WD        Normal
 263   1724          20       RL  ...    2009       New       Partial
 264   1725          60       RL  ...    2009        WD        Normal
 265   1726          60       RL  ...    2009        WD        Normal
 266   1727         120       RL  ...    2009        WD        Normal
 267   1728          60       RL  ...    2009        WD        Normal
 268   1729          60       RL  ...    2009        WD        Normal
 269   1730          90       RL  ...    2009        WD        Normal
 270   1731          20       RL  ...    2009        WD        Normal
 271   1732          20       RL  ...    2009        WD        Normal
 272   1733          20       RL  ...    2009        WD        Normal
 273   1734          20       RL  ...    2009       Oth        Family
 274   1735          20       RL  ...    2009        WD        Normal
 275   1736          20       RL  ...    2009        WD        Normal
 276   1737          20       RL  ...    2009        WD        Normal
 277   1738          60       RL  ...    2009        WD        Normal
 278   1739         160       FV  ...    2009        WD        Normal
 279   1740         120       FV  ...    2009       New       Partial
 280   1741         120       FV  ...    2009        WD        Normal
 281   1742         160       FV  ...    2009        WD        Normal
 282   1743         160       FV  ...    2009        WD        Normal
 283   1744          20       RL  ...    2009        WD        Normal
 284   1745          20       RL  ...    2009        WD        Normal
 285   1746          80       RL  ...    2009        WD       Abnorml
 286   1747          60       RL  ...    2009        WD        Normal
 287   1748          60       RL  ...    2009        WD        Normal
 288   1749          20       RL  ...    2009        WD        Normal
 289   1750          20       RL  ...    2009        WD       Abnorml
 290   1751          60       RL  ...    2009        WD        Normal
 291   1752          20       RL  ...    2009        WD        Normal
 292   1753          20       RL  ...    2009       COD        Normal
 293   1754          60       RL  ...    2009       COD       Abnorml
 294   1755          85       RL  ...    2009        WD        Normal
 295   1756          20       RL  ...    2009        WD        Normal
 296   1757          20       RL  ...    2009        WD        Normal
 297   1758          20       RL  ...    2009        WD        Normal
 298   1759          20       RL  ...    2009        WD        Normal
 299   1760          20       RL  ...    2009        WD        Normal
 300   1761          20       RL  ...    2009       COD       Abnorml
 301   1762          60       RL  ...    2009        WD        Normal
 302   1763          80       RL  ...    2009        WD        Normal
 303   1764          20       RL  ...    2009        WD        Normal
 304   1765          20       RL  ...    2009        WD        Normal
 305   1766          20       RL  ...    2009        WD        Normal
 306   1767          20       RL  ...    2009        WD        Normal
 307   1768          20       RL  ...    2009        WD        Normal
 308   1769          20       RL  ...    2009        WD        Normal
 309   1770          20       RL  ...    2009        WD        Normal
 310   1771          20       RL  ...    2009       COD       Abnorml
 311   1772          20       RL  ...    2009        WD        Normal
 312   1773          20       RL  ...    2009        WD        Family
 313   1774          90       RL  ...    2009        WD        Normal
 314   1775          20       RL  ...    2009        WD        Normal
 315   1776          20       RL  ...    2009        WD        Normal
 316   1777          30       RL  ...    2009        WD        Normal
 317   1778          20       RL  ...    2009        WD        Normal
 318   1779          20       RL  ...    2009     ConLD        Normal
 319   1780          60       RL  ...    2009        WD        Normal
 320   1781          20       RL  ...    2009        WD        Normal
 321   1782          20       RL  ...    2009        WD        Normal
 322   1783          60       RL  ...    2009        WD        Normal
 323   1784          70       RL  ...    2009        WD        Normal
 324   1785          30       RL  ...    2009        WD        Normal
 325   1786          50       RL  ...    2009        WD        Normal
 326   1787          70       RL  ...    2009        WD        Normal
 327   1788          30       RL  ...    2009        WD        Normal
 328   1789          30       RL  ...    2009        WD        Normal
 329   1790          30       RL  ...    2009        WD        Normal
 330   1791          90       RL  ...    2009        WD        Normal
 331   1792          20       RL  ...    2009        WD        Normal
 332   1793          20       RL  ...    2009        WD        Normal
 333   1794          20       RL  ...    2009        WD        Normal
 334   1795          20       RL  ...    2009        WD        Normal
 335   1796          20       RL  ...    2009        WD        Normal
 336   1797          50       RL  ...    2009       COD       Abnorml
 337   1798          20       RL  ...    2009        WD        Normal
 338   1799          20       RL  ...    2009        WD        Normal
 339   1800          80       RL  ...    2009        WD        Normal
 340   1801          50       RL  ...    2009        WD        Normal
 341   1802          50       RL  ...    2009       COD       Abnorml
 342   1803          60       RL  ...    2009        WD        Normal
 343   1804          90       RL  ...    2009        WD        Normal
 344   1805          20       RL  ...    2009        WD        Normal
 345   1806          50       RM  ...    2009        WD        Normal
 346   1807          90       RM  ...    2009        WD        Normal
 347   1808          50       RM  ...    2009        WD        Normal
 348   1809          70       RM  ...    2009        WD        Normal
 349   1810          70       RM  ...    2009        WD        Normal
 350   1811         190       RM  ...    2009        WD        Normal
 351   1812          50       RM  ...    2009        WD        Normal
 352   1813          50       RM  ...    2009        WD        Normal
 353   1814          30       RM  ...    2009       Oth        Normal
 354   1815          30       RM  ...    2009        WD        Normal
 355   1816          30       RM  ...    2009        WD        Normal
 356   1817          70       RM  ...    2009        WD        Normal
 357   1818          70       RM  ...    2009        WD        Normal
 358   1819          70       RM  ...    2009        WD        Normal
 359   1820          30  C (all)  ...    2009        WD        Normal
 360   1821          50       RM  ...    2009     ConLI        Family
 361   1822          70       RM  ...    2009        WD        Normal
 362   1823          30  C (all)  ...    2009        WD       Abnorml
 363   1824          30       RL  ...    2009        WD        Normal
 364   1825          70       RL  ...    2009        WD        Normal
 365   1826          50       RM  ...    2009        WD        Normal
 366   1827          30       RM  ...    2009        WD       Abnorml
 367   1828          50       RM  ...    2009        WD        Normal
 368   1829          30       RM  ...    2009        WD        Normal
 369   1830          70       RM  ...    2009        WD        Normal
 370   1831          70       RM  ...    2009        WD        Normal
 371   1832          90       RM  ...    2009        WD       Abnorml
 372   1833          70       RM  ...    2009        WD        Normal
 373   1834          70       RM  ...    2009        WD        Normal
 374   1835         190       RM  ...    2009        WD        Normal
 375   1836          50       RM  ...    2009        WD        Normal
 376   1837          85       RM  ...    2009       COD       Abnorml
 377   1838         190       RM  ...    2009        WD        Normal
 378   1839          20       RL  ...    2009        WD        Normal
 379   1840          90       RL  ...    2009        WD        Alloca
 380   1841          90       RL  ...    2009        WD        Normal
 381   1842          50       RL  ...    2009        WD        Normal
 382   1843          20       RL  ...    2009        WD       Abnorml
 383   1844          85       RL  ...    2009        WD        Normal
 384   1845          80       RL  ...    2009        WD        Normal
 385   1846          80       RL  ...    2009       COD        Normal
 386   1847          80       RL  ...    2009        WD        Normal
 387   1848          20       RL  ...    2009        WD        Normal
 388   1849          20       RL  ...    2009        WD        Normal
 389   1850          20       RL  ...    2009        WD        Normal
 390   1851          60       RL  ...    2009        WD        Normal
 391   1852          20       RL  ...    2009        WD        Normal
 392   1853         120       RL  ...    2009        WD        Normal
 393   1854          80       RL  ...    2009        WD        Normal
 394   1855          80       RL  ...    2009        WD        Normal
 395   1856          60       RL  ...    2009        WD        Normal
 396   1857          70       RL  ...    2009        WD        Normal
 397   1858          90       RL  ...    2009        WD        Alloca
 398   1859          90       RL  ...    2009        WD        Alloca
 399   1860          90       RL  ...    2009        WD        Alloca
 400   1861          90       RL  ...    2009        WD        Alloca
 401   1862          90       RL  ...    2009        WD        Normal
 402   1863          90       RL  ...    2009        WD        Normal
 403   1864          90       RL  ...    2009        WD        Normal
 404   1865          20       RL  ...    2009       New       Partial
 405   1866          20       RL  ...    2009        WD        Normal
 406   1867          20       RL  ...    2009        WD        Normal
 407   1868          20       RL  ...    2009        WD        Normal
 408   1869          20       RL  ...    2009        WD        Normal
 409   1870          20       RL  ...    2009        WD        Normal
 410   1871          20       RL  ...    2009        WD        Normal
 411   1872          60       RL  ...    2009        WD        Normal
 412   1873          60       RL  ...    2009        WD        Normal
 413   1874          20       RL  ...    2009        WD        Normal
 414   1875          20       RL  ...    2009        WD        Normal
 415   1876          60       RL  ...    2009        WD        Normal
 416   1877          20       RL  ...    2009        WD        Normal
 417   1878          20       RL  ...    2009        WD        Family
 418   1879          20       RL  ...    2009        WD        Normal
 419   1880          20       RL  ...    2009        WD        Normal
 420   1881          20       RL  ...    2009        WD        Normal
 421   1882          60       RL  ...    2009        WD        Normal
 422   1883          60       RL  ...    2009        WD        Normal
 423   1884          60       RL  ...    2009        WD        Normal
 424   1885          20       RL  ...    2009        WD        Normal
 425   1886          20       RL  ...    2009        WD        Normal
 426   1887          20       RL  ...    2009        WD        Normal
 427   1888          20       RL  ...    2009        WD        Normal
 428   1889          60       RL  ...    2009        WD        Normal
 429   1890          20       RL  ...    2009        WD        Normal
 430   1891         180       RM  ...    2009        WD        Normal
 431   1892          20       RL  ...    2009        WD        Normal
 432   1893          20       RL  ...    2009        WD        Normal
 433   1894          90       RL  ...    2009        WD        Normal
 434   1895          20       RL  ...    2009        WD        Normal
 435   1896          50       RL  ...    2009        WD        Normal
 436   1897          50       RH  ...    2009        WD       Abnorml
 437   1898          70       RL  ...    2009        WD        Normal
 438   1899          30       RL  ...    2009        WD        Normal
 439   1900          70       RL  ...    2009        WD        Normal
 440   1901          50       RL  ...    2009        WD        Normal
 441   1902          20       RL  ...    2009        WD        Normal
 442   1903          90       RL  ...    2009        WD        Normal
 443   1904          20       RL  ...    2009        WD        Family
 444   1905          20       RL  ...    2009        WD        Normal
 445   1906          50       RL  ...    2009        WD        Normal
 446   1907          20       RL  ...    2009        WD        Normal
 447   1908         160       RM  ...    2009        WD        Normal
 448   1909         160       RM  ...    2009        WD        Normal
 449   1910         160       RM  ...    2009        WD        Normal
 450   1911          80       RL  ...    2009        WD        Normal
 451   1912          20       RL  ...    2009        WD        Normal
 452   1913          70       RM  ...    2009        WD        Normal
 453   1914          30  C (all)  ...    2009        WD        Normal
 454   1915         120       RM  ...    2009       New       Partial
 455   1916          30      NaN  ...    2009     ConLD        Normal
 456   1917          60       RL  ...    2009        WD        Normal
 457   1918          85       RL  ...    2009        WD        Normal
 458   1919          85       RL  ...    2009        WD        Normal
 459   1920          20       RL  ...    2009       COD       Abnorml
 460   1921          20       RL  ...    2009        WD        Normal
 461   1922          20       RL  ...    2009        WD        Normal
 462   1923          60       RL  ...    2009        WD        Normal
 463   1924          80       RL  ...    2009        WD        Normal
 464   1925          60       RL  ...    2009        WD       Abnorml
 465   1926          20       RL  ...    2009        WD        Normal
 466   1927          20       RL  ...    2009        WD        Normal
 467   1928          20       RL  ...    2009        WD        Normal
 468   1929          85       RL  ...    2009        WD        Normal
 469   1930          80       RL  ...    2009        WD        Normal
 470   1931          85       RL  ...    2009        WD        Normal
 471   1932          60       RL  ...    2009        WD        Normal
 472   1933          60       RL  ...    2009        WD        Normal
 473   1934          60       RL  ...    2008        WD        Normal
 474   1935          60       RL  ...    2008        WD        Normal
 475   1936          60       RL  ...    2008        WD        Normal
 476   1937          60       RL  ...    2008        WD        Normal
 477   1938          20       RL  ...    2008        WD        Normal
 478   1939         120       RL  ...    2008        WD        Normal
 479   1940         120       RL  ...    2008        WD        Normal
 480   1941          60       RL  ...    2008        WD        Family
 481   1942          60       RL  ...    2008        WD        Normal
 482   1943         120       RL  ...    2008        WD        Normal
 483   1944          60       RL  ...    2008        WD        Normal
 484   1945          20       RL  ...    2008        WD        Normal
 485   1946          20       RL  ...    2008        WD        Normal
 486   1947         120       RL  ...    2008        WD        Normal
 487   1948          20       RL  ...    2008        WD        Family
 488   1949          20       RL  ...    2008        WD        Normal
 489   1950          20       RL  ...    2008        WD        Normal
 490   1951          20       RL  ...    2008        WD        Normal
 491   1952          20       RL  ...    2008        WD        Normal
 492   1953          20       RL  ...    2008        WD        Normal
 493   1954          60       RL  ...    2008        WD        Normal
 494   1955          60       RL  ...    2008        WD        Normal
 495   1956          60       RL  ...    2008        WD        Normal
 496   1957          20       RL  ...    2008        WD        Normal
 497   1958          60       RL  ...    2008        WD        Normal
 498   1959          90       RL  ...    2008        WD        Normal
 499   1960          20       RL  ...    2008       COD        Normal
 500   1961          20       RL  ...    2008        WD        Normal
 501   1962         160       RM  ...    2008        WD        Normal
 502   1963         160       RM  ...    2008        WD        Normal
 503   1964         160       RM  ...    2008        WD        Normal
 504   1965         160       RL  ...    2008        WD        Normal
 505   1966         120       RL  ...    2008        WD        Normal
 506   1967          20       RL  ...    2008       New       Partial
 507   1968          20       RL  ...    2008        WD        Normal
 508   1969          20       RL  ...    2008        WD        Normal
 509   1970          60       RL  ...    2008        WD       Abnorml
 510   1971          60       RL  ...    2008        WD        Normal
 511   1972          60       RL  ...    2008        WD        Normal
 512   1973          60       RL  ...    2008        WD        Normal
 513   1974          60       RL  ...    2008        WD        Normal
 514   1975          20       RL  ...    2008        WD        Normal
 515   1976          20       RL  ...    2008        WD        Normal
 516   1977          60       RL  ...    2008        WD        Normal
 517   1978          60       RL  ...    2008        WD        Normal
 518   1979         120       RL  ...    2008       New       Partial
 519   1980         120       RL  ...    2008        WD        Normal
 520   1981         120       RL  ...    2008       New       Partial
 521   1982         120       RL  ...    2008        WD        Normal
 522   1983         120       RL  ...    2008        WD        Normal
 523   1984         160       RL  ...    2008        WD        Normal
 524   1985         120       RL  ...    2008        WD        Normal
 525   1986         120       RM  ...    2008        WD        Normal
 526   1987          20       RL  ...    2008       New       Partial
 527   1988          60       RL  ...    2008        WD        Normal
 528   1989          60       RL  ...    2008        WD        Normal
 529   1990          60       RL  ...    2008        WD        Normal
 530   1991         120       RL  ...    2008       New       Partial
 531   1992          60       RL  ...    2008        WD        Normal
 532   1993          60       RL  ...    2008        WD        Normal
 533   1994          60       RL  ...    2008        WD        Normal
 534   1995          60       RL  ...    2008        WD        Normal
 535   1996          75       RL  ...    2008        WD        Normal
 536   1997          60       RL  ...    2008        WD        Normal
 537   1998          20       RL  ...    2008        WD        Normal
 538   1999          60       RL  ...    2008        WD        Normal
 539   2000          60       RL  ...    2008        WD        Normal
 540   2001          60       RL  ...    2008        WD        Normal
 541   2002          20       RL  ...    2008        WD        Normal
 542   2003          60       RL  ...    2008        WD        Normal
 543   2004          60       RL  ...    2008       New       Partial
 544   2005          20       RL  ...    2008        WD        Normal
 545   2006          20       FV  ...    2008       New       Partial
 546   2007          20       FV  ...    2008        WD        Normal
 547   2008          20       FV  ...    2008       New       Partial
 548   2009          60       RL  ...    2008        WD        Normal
 549   2010          60       RL  ...    2008        WD        Normal
 550   2011          20       RL  ...    2008        WD        Normal
 551   2012          20       RL  ...    2008        WD        Normal
 552   2013          60       RL  ...    2008        WD        Normal
 553   2014          60       RL  ...    2008        WD        Normal
 554   2015          60       RL  ...    2008        WD        Normal
 555   2016          60       RL  ...    2008        WD        Normal
 556   2017          60       RL  ...    2008        WD        Normal
 557   2018          20       RL  ...    2008        WD        Normal
 558   2019          20       RL  ...    2008        WD        Normal
 559   2020         190       RL  ...    2008        WD        Normal
 560   2021          20       RL  ...    2008       COD       Abnorml
 561   2022          20       RL  ...    2008        WD        Normal
 562   2023          50       RL  ...    2008        WD        Normal
 563   2024          60       RL  ...    2008        WD        Normal
 564   2025          60       RL  ...    2008        WD        Normal
 565   2026         120       FV  ...    2008        WD        Normal
 566   2027         160       FV  ...    2008        WD        Normal
 567   2028         160       FV  ...    2008        WD       Abnorml
 568   2029         160       FV  ...    2008        WD        Normal
 569   2030         120       FV  ...    2008        WD        Normal
 570   2031         120       FV  ...    2008        WD        Normal
 571   2032         120       FV  ...    2008        WD        Normal
 572   2033         120       FV  ...    2008        WD        Normal
 573   2034         160       FV  ...    2008        WD        Normal
 574   2035          60       FV  ...    2008        WD        Normal
 575   2036         160       FV  ...    2008        WD        Normal
 576   2037         160       FV  ...    2008     ConLD        Normal
 577   2038         160       FV  ...    2008        WD        Normal
 578   2039         120       RL  ...    2008        WD        Normal
 579   2040          60       RL  ...    2008        WD        Family
 580   2041          20       RL  ...    2008        WD        Normal
 581   2042          60       FV  ...    2008        WD        Normal
 582   2043          80       RL  ...    2008        WD        Normal
 583   2044          20       RL  ...    2008        WD        Family
 584   2045          20       RL  ...    2008        WD        Normal
 585   2046          90       RL  ...    2008     ConLD        Normal
 586   2047          60       RL  ...    2008        WD        Normal
 587   2048          20       RL  ...    2008        WD        Normal
 588   2049          90       RL  ...    2008        WD        Normal
 589   2050          60       RL  ...    2008        WD        Normal
 590   2051          20       RL  ...    2008        WD        Normal
 591   2052          20       RL  ...    2008       COD       Abnorml
 592   2053          20       RL  ...    2008        WD        Normal
 593   2054          70       RL  ...    2008        WD        Normal
 594   2055          20       RL  ...    2008        WD        Normal
 595   2056          20       RL  ...    2008        WD        Normal
 596   2057          20       RL  ...    2008        WD        Normal
 597   2058          60       RL  ...    2008        WD        Normal
 598   2059          20       RL  ...    2008        WD        Normal
 599   2060          20       RL  ...    2008        WD        Normal
 600   2061          20       RL  ...    2008        WD        Normal
 601   2062          20       RL  ...    2008        WD        Normal
 602   2063          20       RL  ...    2008        WD        Normal
 603   2064          20       RL  ...    2008        WD        Normal
 604   2065          20       RL  ...    2008        WD        Normal
 605   2066          20       RL  ...    2008        WD        Normal
 606   2067          20       RL  ...    2008        WD        Normal
 607   2068          90       RL  ...    2008        WD        Normal
 608   2069          20       RL  ...    2008        WD        Normal
 609   2070          50       RL  ...    2008        WD        Normal
 610   2071          30       RL  ...    2008        WD        Normal
 611   2072          50       RL  ...    2008        WD        Normal
 612   2073          20       RL  ...    2008        WD        Normal
 613   2074          20       RL  ...    2008        WD        Normal
 614   2075          20       RL  ...    2008        WD        Normal
 615   2076          20       RL  ...    2008        WD       Abnorml
 616   2077          20       RL  ...    2008        WD        Normal
 617   2078          20       RL  ...    2008        WD        Normal
 618   2079          50       RL  ...    2008        WD        Normal
 619   2080          45       RL  ...    2008        WD        Normal
 620   2081          50       RL  ...    2008        WD        Normal
 621   2082          90       RL  ...    2008        WD       Abnorml
 622   2083          50       RL  ...    2008        WD        Normal
 623   2084          20       RL  ...    2008        WD        Normal
 624   2085          20       RL  ...    2008       COD        Normal
 625   2086          20       RM  ...    2008        WD       Abnorml
 626   2087          50       RM  ...    2008        WD        Normal
 627   2088          70       RM  ...    2008        WD        Normal
 628   2089          30       RM  ...    2008        WD        Normal
 629   2090          75       RM  ...    2008        WD        Normal
 630   2091         190       RM  ...    2008        WD        Normal
 631   2092          50       RM  ...    2008        WD        Normal
 632   2093          50       RM  ...    2008        WD        Normal
 633   2094          30       RM  ...    2008        WD        Normal
 634   2095         190       RM  ...    2008       Con        Normal
 635   2096          30       RM  ...    2008        WD        Normal
 636   2097          50       RM  ...    2008        WD        Normal
 637   2098          50       RM  ...    2008        WD        Normal
 638   2099          20       RM  ...    2008        WD       Abnorml
 639   2100          20       RM  ...    2008        WD       Abnorml
 640   2101         190       RM  ...    2008        WD        Normal
 641   2102          75       RM  ...    2008        WD        Normal
 642   2103          50       RM  ...    2008        WD        Normal
 643   2104         190       RM  ...    2008        WD        Normal
 644   2105          70       RM  ...    2008        WD        Normal
 645   2106          70       RM  ...    2008     ConLD        Normal
 646   2107          70       RM  ...    2008        WD        Normal
 647   2108          20       RM  ...    2008        WD        Normal
 648   2109          20       RM  ...    2008        WD        Normal
 649   2110          30       RL  ...    2008        WD        Normal
 650   2111          50       RM  ...    2008        WD       Abnorml
 651   2112          50       RL  ...    2008        WD        Normal
 652   2113          50       RM  ...    2008        WD        Normal
 653   2114          70       RM  ...    2008        WD        Normal
 654   2115          50       RM  ...    2008        WD        Normal
 655   2116          30       RM  ...    2008        WD        Normal
 656   2117          50       RM  ...    2008        WD        Normal
 657   2118          50       RM  ...    2008        WD        Normal
 658   2119          45       RM  ...    2008        WD        Normal
 659   2120          50       RM  ...    2008        WD        Normal
 660   2121          20       RM  ...    2008     ConLD       Abnorml
 661   2122          50       RM  ...    2008        WD        Normal
 662   2123          30       RM  ...    2008        WD        Normal
 663   2124          50       RM  ...    2008        WD        Normal
 664   2125          70       RM  ...    2008        WD        Normal
 665   2126          50       RL  ...    2008        WD        Normal
 666   2127          60       RM  ...    2008        WD        Normal
 667   2128          50       RM  ...    2008        WD        Normal
 668   2129          30       RM  ...    2008        WD        Normal
 669   2130          70       RM  ...    2008       COD       Abnorml
 670   2131          50       RM  ...    2008       COD        Normal
 671   2132          50       RM  ...    2008        WD        Normal
 672   2133          30       RM  ...    2008        WD        Normal
 673   2134          50       RM  ...    2008        WD        Family
 674   2135          30       RM  ...    2008     ConLD        Family
 675   2136         190       RM  ...    2008        WD        Normal
 676   2137          20       RL  ...    2008        WD       Abnorml
 677   2138          85       RL  ...    2008        WD       Abnorml
 678   2139          80       RL  ...    2008        WD        Normal
 679   2140          20       RL  ...    2008        WD        Normal
 680   2141          85       RL  ...    2008        WD        Normal
 681   2142          20       RL  ...    2008        WD        Normal
 682   2143          85       RL  ...    2008        WD        Normal
 683   2144         190       RL  ...    2008        WD        Alloca
 684   2145          20       RL  ...    2008        WD        Normal
 685   2146          20       RL  ...    2008        WD        Normal
 686   2147         190       RL  ...    2008        WD       Abnorml
 687   2148          50       RL  ...    2008        WD        Normal
 688   2149          80       RL  ...    2008        WD        Normal
 689   2150          20       RL  ...    2008        WD        Normal
 690   2151          50       RL  ...    2008        WD        Normal
 691   2152          30       RL  ...    2008        WD        Normal
 692   2153          20       RL  ...    2008        WD        Normal
 693   2154          90       RL  ...    2008        WD        Normal
 694   2155          60       RL  ...    2008        WD        Normal
 695   2156          60       RL  ...    2008        WD        Normal
 696   2157          20       RL  ...    2008        WD        Normal
 697   2158          60       RL  ...    2008        WD        Normal
 698   2159          80       RL  ...    2008        WD        Normal
 699   2160          60       RL  ...    2008       New       Partial
 700   2161          20       RL  ...    2008        WD        Normal
 701   2162          20       RL  ...    2008        WD       Abnorml
 702   2163          20       RL  ...    2008       New       Partial
 703   2164          80       RL  ...    2008        WD        Normal
 704   2165          20       RL  ...    2008        WD        Normal
 705   2166          20       RL  ...    2008        WD        Normal
 706   2167          20       RL  ...    2008        WD        Normal
 707   2168          60       RL  ...    2008        WD        Normal
 708   2169          60       RL  ...    2008        WD        Normal
 709   2170          60       RL  ...    2008        WD        Normal
 710   2171          20       RL  ...    2008        WD        Normal
 711   2172          20       RL  ...    2008        WD       Abnorml
 712   2173          20       RL  ...    2008        WD        Normal
 713   2174          60       RL  ...    2008        WD        Normal
 714   2175          60       RL  ...    2008        WD        Normal
 715   2176          20       RL  ...    2008        WD        Normal
 716   2177          60       RL  ...    2008        WD        Normal
 717   2178          60       RL  ...    2008        WD        Normal
 718   2179         120       RM  ...    2008        WD        Normal
 719   2180          90       RM  ...    2008        WD       Abnorml
 720   2181          20       RL  ...    2008        WD        Normal
 721   2182          20       RL  ...    2008        WD        Normal
 722   2183          20       RL  ...    2008        WD        Normal
 723   2184          20       RL  ...    2008       COD       Abnorml
 724   2185          85       RL  ...    2008        WD        Family
 725   2186          20       RL  ...    2008        WD        Normal
 726   2187          80       RL  ...    2008        WD        Normal
 727   2188          60       RL  ...    2008        WD        Normal
 728   2189          20       RL  ...    2008        WD        Normal
 729   2190          90       RL  ...    2008        WD       AdjLand
 730   2191          90       RL  ...    2008        WD        Normal
 731   2192         190       RL  ...    2008        WD        Normal
 732   2193          50       RL  ...    2008        WD        Family
 733   2194          50       RL  ...    2008        WD        Normal
 734   2195          20       RL  ...    2008        WD        Normal
 735   2196          80       RL  ...    2008        WD       Abnorml
 736   2197          30       RL  ...    2008        WD        Normal
 737   2198          30       RL  ...    2008        WD        Normal
 738   2199          90       RL  ...    2008        WD       Abnorml
 739   2200          70       RL  ...    2008        WD        Normal
 740   2201          50       RL  ...    2008        WD        Normal
 741   2202          70       RL  ...    2008        WD        Normal
 742   2203          70       RL  ...    2008        WD        Normal
 743   2204          50       RL  ...    2008        WD        Normal
 744   2205          50       RL  ...    2008        WD        Normal
 745   2206          20       RL  ...    2008        WD        Normal
 746   2207          70       RL  ...    2008        WD        Alloca
 747   2208          50       RL  ...    2008        WD        Normal
 748   2209          20       RL  ...    2008        WD        Normal
 749   2210         160       RM  ...    2008        WD        Normal
 750   2211          30       RM  ...    2008        WD        Normal
 751   2212          50       RM  ...    2008        WD        Normal
 752   2213          50       RM  ...    2008        WD        Normal
 753   2214          80       RM  ...    2008        WD        Normal
 754   2215          30       RM  ...    2008        WD        Normal
 755   2216          50       RM  ...    2008        WD        Normal
 756   2217          20      NaN  ...    2008        WD       Abnorml
 757   2218          70  C (all)  ...    2008        WD        Normal
 758   2219          50  C (all)  ...    2008        WD        Normal
 759   2220          70  C (all)  ...    2008        WD        Normal
 760   2221         120       RM  ...    2008       New       Partial
 761   2222         120       RM  ...    2008        WD        Normal
 762   2223          20       RL  ...    2008        WD        Normal
 763   2224          60       RL  ...    2008        WD        Normal
 764   2225          90       RL  ...    2008        WD       Abnorml
 765   2226          20       RL  ...    2008        WD        Normal
 766   2227         120       RL  ...    2008        WD        Normal
 767   2228          20       RL  ...    2008        WD        Normal
 768   2229          60       RL  ...    2008       New       Partial
 769   2230          80       RL  ...    2008        WD        Normal
 770   2231          60       RL  ...    2008       New       Partial
 771   2232          20       RL  ...    2008        WD        Normal
 772   2233          20       RL  ...    2008        WD        Normal
 773   2234          20       RL  ...    2008        WD        Normal
 774   2235          20       RL  ...    2008        WD        Normal
 775   2236          20       RL  ...    2008        WD        Normal
 776   2237          20       RL  ...    2008        WD        Normal
 777   2238          90       RM  ...    2008        WD        Alloca
 778   2239          20       RL  ...    2008        WD       Abnorml
 779   2240         120       RM  ...    2008        WD        Normal
 780   2241          85       RL  ...    2008     ConLD        Normal
 781   2242         120       RM  ...    2008        WD        Normal
 782   2243         160       RM  ...    2008        WD        Normal
 783   2244         180       RM  ...    2008        WD        Normal
 784   2245         180       RM  ...    2008        WD        Normal
 785   2246          20       RL  ...    2008        WD        Normal
 786   2247         160       RM  ...    2008        WD        Normal
 787   2248          20       RL  ...    2008        WD        Normal
 788   2249          20       RL  ...    2008        WD        Normal
 789   2250          20       RL  ...    2008        WD        Normal
 790   2251          70      NaN  ...    2008        WD        Normal
 791   2252          20       RL  ...    2007        WD        Normal
 792   2253          80       RL  ...    2007        WD        Normal
 793   2254          80       RL  ...    2007        WD        Normal
 794   2255          60       RL  ...    2007        WD       Abnorml
 795   2256          60       RL  ...    2007        WD        Normal
 796   2257          60       RL  ...    2007        WD        Normal
 797   2258          20       RL  ...    2007        WD        Normal
 798   2259          60       RL  ...    2007        WD        Normal
 799   2260          20       RL  ...    2007        WD        Alloca
 800   2261         120       RL  ...    2007        WD        Normal
 801   2262         120       RL  ...    2007        WD        Normal
 802   2263          60       RL  ...    2007        WD        Normal
 803   2264          20       RL  ...    2007       New       Partial
 804   2265         190       RL  ...    2007        WD        Normal
 805   2266         120       RL  ...    2007        WD        Normal
 806   2267          20       RL  ...    2007        WD        Normal
 807   2268          20       RL  ...    2007       New       Partial
 808   2269          20       RL  ...    2007       COD       Abnorml
 809   2270          60       RL  ...    2007        WD        Normal
 810   2271          20       RL  ...    2007        WD        Normal
 811   2272          60       RL  ...    2007        WD        Normal
 812   2273          20       RL  ...    2007        WD        Normal
 813   2274          20       RL  ...    2007        WD        Normal
 814   2275          20       RL  ...    2007        WD        Normal
 815   2276          80       RL  ...    2007        WD        Normal
 816   2277          60       RL  ...    2007        WD        Normal
 817   2278          20       RL  ...    2007        WD        Normal
 818   2279          20       RL  ...    2007        WD        Normal
 819   2280          20       RL  ...    2007        WD        Normal
 820   2281         120       RH  ...    2007        WD        Normal
 821   2282         120       RH  ...    2007        WD        Normal
 822   2283         160       RM  ...    2007        WD        Normal
 823   2284         160       RM  ...    2007        WD        Normal
 824   2285         120       RL  ...    2007        WD        Normal
 825   2286          20       RL  ...    2007        WD        Normal
 826   2287          20       RL  ...    2007       New       Partial
 827   2288          20       RL  ...    2007       New       Partial
 828   2289          20       RL  ...    2007       New       Partial
 829   2290          60       RL  ...    2007       New       Partial
 830   2291          60       RL  ...    2007       New       Partial
 831   2292          20       RL  ...    2007        WD        Normal
 832   2293          20       RL  ...    2007       New       Partial
 833   2294          60       RL  ...    2007        WD        Normal
 834   2295          20       RL  ...    2007       New       Partial
 835   2296          60       RL  ...    2007       New       Partial
 836   2297          60       RL  ...    2007       New       Partial
 837   2298          20       RL  ...    2007        WD        Normal
 838   2299          60       RL  ...    2007        WD        Normal
 839   2300          60       RL  ...    2007        WD        Normal
 840   2301          60       RL  ...    2007       New       Partial
 841   2302          20       RL  ...    2007        WD        Normal
 842   2303          20       RL  ...    2007        WD        Normal
 843   2304          60       RL  ...    2007       New       Partial
 844   2305         120       RL  ...    2007       New       Partial
 845   2306         120       RL  ...    2007        WD        Normal
 846   2307         120       RL  ...    2007        WD        Normal
 847   2308         120       RL  ...    2007       CWD        Normal
 848   2309         120       RL  ...    2007        WD        Normal
 849   2310         120       RL  ...    2007       New       Partial
 850   2311         120       RL  ...    2007        WD        Normal
 851   2312          60       RL  ...    2007       New       Partial
 852   2313          60       RL  ...    2007        WD        Normal
 853   2314          60       RL  ...    2007       New       Partial
 854   2315          60       RL  ...    2007       New       Partial
 855   2316          60       RL  ...    2007       New       Partial
 856   2317          20       RL  ...    2007        WD        Normal
 857   2318          60       RL  ...    2007       New       Partial
 858   2319          60       RL  ...    2007       New       Partial
 859   2320          20       RL  ...    2007       New       Partial
 860   2321         120       RL  ...    2007        WD        Normal
 861   2322          20       RL  ...    2007       New       Partial
 862   2323          80       RL  ...    2007        WD        Normal
 863   2324          80       RL  ...    2007        WD        Family
 864   2325          20       RL  ...    2007       New       Partial
 865   2326          80       RL  ...    2007        WD        Normal
 866   2327          60       RL  ...    2007        WD        Normal
 867   2328          60       RL  ...    2007        WD        Normal
 868   2329          60       RL  ...    2007        WD        Normal
 869   2330          60       RL  ...    2007        WD        Normal
 870   2331          60       RL  ...    2007        WD        Normal
 871   2332          60       RL  ...    2007        WD        Normal
 872   2333          60       RL  ...    2007        WD        Normal
 873   2334          60       RL  ...    2007        WD        Normal
 874   2335          60       RL  ...    2007        WD        Normal
 875   2336          60       RL  ...    2007        WD        Normal
 876   2337          20       RL  ...    2007       New       Partial
 877   2338          20       RL  ...    2007       New       Partial
 878   2339          20       RL  ...    2007        WD        Family
 879   2340          20       RL  ...    2007       New       Partial
 880   2341          20       RL  ...    2007       New       Partial
 881   2342          20       RL  ...    2007        WD        Normal
 882   2343          20       RL  ...    2007        WD        Normal
 883   2344          60       RL  ...    2007        WD        Family
 884   2345          60       RL  ...    2007        WD        Normal
 885   2346          20       FV  ...    2007       New       Partial
 886   2347          20       FV  ...    2007       New       Partial
 887   2348          60       FV  ...    2007       New       Partial
 888   2349          60       FV  ...    2007       New       Partial
 889   2350          60       FV  ...    2007       New       Partial
 890   2351          20       FV  ...    2007       New       Partial
 891   2352          20       FV  ...    2007        WD        Normal
 892   2353          60       FV  ...    2007        WD        Normal
 893   2354          20       RL  ...    2007       New       Partial
 894   2355          20       RL  ...    2007        WD        Normal
 895   2356          20       RL  ...    2007        WD        Normal
 896   2357          20       RL  ...    2007        WD        Normal
 897   2358          60       RL  ...    2007        WD        Normal
 898   2359         160       RL  ...    2007        WD        Normal
 899   2360          20       RL  ...    2007        WD        Normal
 900   2361          20       RL  ...    2007        WD        Normal
 901   2362          60       RL  ...    2007        WD        Normal
 902   2363          20       RL  ...    2007        WD        Normal
 903   2364          20       RL  ...    2007        WD       Abnorml
 904   2365         120       FV  ...    2007        WD        Normal
 905   2366         120       FV  ...    2007       New       Partial
 906   2367         120       FV  ...    2007       New       Partial
 907   2368         120       FV  ...    2007       New       Partial
 908   2369         120       FV  ...    2007       New       Partial
 909   2370         160       FV  ...    2007        WD        Normal
 910   2371         160       FV  ...    2007        WD        Normal
 911   2372          20       FV  ...    2007       COD        Normal
 912   2373          60       FV  ...    2007        WD        Normal
 913   2374          60       FV  ...    2007        WD        Normal
 914   2375         120       RL  ...    2007        WD        Normal
 915   2376          20       RL  ...    2007        WD        Normal
 916   2377          20       RL  ...    2007        WD        Normal
 917   2378          20       RL  ...    2007       CWD        Normal
 918   2379          60       RL  ...    2007        WD        Normal
 919   2380          85       RL  ...    2007        WD        Normal
 920   2381          20       RL  ...    2007        WD        Normal
 921   2382          20       RL  ...    2007        WD        Normal
 922   2383          20       RL  ...    2007        WD        Normal
 923   2384          60       RL  ...    2007        WD        Normal
 924   2385          20       RL  ...    2007        WD        Normal
 925   2386          20       RL  ...    2007       COD        Normal
 926   2387          20       RL  ...    2007        WD        Normal
 927   2388          90       RL  ...    2007        WD        Normal
 928   2389          20       RL  ...    2007        WD        Normal
 929   2390          20       RL  ...    2007       CWD        Normal
 930   2391          20       RL  ...    2007        WD        Normal
 931   2392          20       RL  ...    2007        WD        Normal
 932   2393          20       RL  ...    2007       CWD        Normal
 933   2394          80       RL  ...    2007        WD        Normal
 934   2395          60       RL  ...    2007        WD        Normal
 935   2396          20       RL  ...    2007        WD        Normal
 936   2397          20       RL  ...    2007        WD        Normal
 937   2398          45       RL  ...    2007        WD        Normal
 938   2399          20       RL  ...    2007        WD        Normal
 939   2400          50       RL  ...    2007        WD        Normal
 940   2401          20       RL  ...    2007       COD        Normal
 941   2402          20       RL  ...    2007        WD        Normal
 942   2403          90       RL  ...    2007        WD        Normal
 943   2404          85       RL  ...    2007        WD        Normal
 944   2405          80       RL  ...    2007        WD        Normal
 945   2406          20       RL  ...    2007        WD        Normal
 946   2407          20       RL  ...    2007        WD        Normal
 947   2408          20       RL  ...    2007        WD        Normal
 948   2409          20       RL  ...    2007        WD        Normal
 949   2410          20       RL  ...    2007        WD        Normal
 950   2411          20       RL  ...    2007        WD        Normal
 951   2412          20       RL  ...    2007       COD        Normal
 952   2413          20       RL  ...    2007        WD        Normal
 953   2414          20       RL  ...    2007        WD        Normal
 954   2415          90       RL  ...    2007        WD        Normal
 955   2416          20       RL  ...    2007        WD        Normal
 956   2417          20       RL  ...    2007        WD        Normal
 957   2418          20       RL  ...    2007        WD        Normal
 958   2419          50       RL  ...    2007        WD        Normal
 959   2420          20       RL  ...    2007        WD        Normal
 960   2421          20       RL  ...    2007        WD        Normal
 961   2422          20       RL  ...    2007        WD        Normal
 962   2423          50       RL  ...    2007        WD        Normal
 963   2424          50       RL  ...    2007        WD        Normal
 964   2425          70       RL  ...    2007        WD        Family
 965   2426          50       RL  ...    2007        WD       Abnorml
 966   2427          70       RL  ...    2007        WD        Normal
 967   2428          80       RL  ...    2007        WD        Normal
 968   2429          20       RL  ...    2007       COD       Abnorml
 969   2430          20       RL  ...    2007        WD        Normal
 970   2431          20       RL  ...    2007        WD        Normal
 971   2432          20       RL  ...    2007        WD        Normal
 972   2433          20       RL  ...    2007        WD        Normal
 973   2434          20       RL  ...    2007        WD        Family
 974   2435          20       RL  ...    2007        WD        Normal
 975   2436          20       RL  ...    2007        WD        Normal
 976   2437          20       RL  ...    2007        WD        Normal
 977   2438          85       RL  ...    2007        WD        Normal
 978   2439          30       RM  ...    2007        WD        Normal
 979   2440          50       RM  ...    2007        WD        Normal
 980   2441          30       RM  ...    2007        WD        Normal
 981   2442          30       RM  ...    2007        WD        Normal
 982   2443          30       RM  ...    2007        WD        Normal
 983   2444          50       RM  ...    2007        WD        Normal
 984   2445          50       RM  ...    2007     ConLw        Normal
 985   2446          70       RM  ...    2007        WD        Normal
 986   2447          70       RM  ...    2007        WD        Normal
 987   2448          70       RM  ...    2007        WD       Abnorml
 988   2449          70       RM  ...    2007        WD        Normal
 989   2450          50       RM  ...    2007        WD        Normal
 990   2451          70       RM  ...    2007        WD       Partial
 991   2452          75       RM  ...    2007        WD        Normal
 992   2453          20       RM  ...    2007        WD        Normal
 993   2454          80       RM  ...    2007        WD        Normal
 994   2455          40       RL  ...    2007        WD        Normal
 995   2456          50       RM  ...    2007        WD        Normal
 996   2457          50       RM  ...    2007       CWD        Normal
 997   2458          70       RM  ...    2007        WD        Normal
 998   2459          45       RM  ...    2007        WD        Normal
 999   2460          50       RM  ...    2007        WD        Normal
 1000  2461          50       RM  ...    2007        WD        Normal
 1001  2462          50       RM  ...    2007        WD        Normal
 1002  2463          50       RM  ...    2007        WD        Normal
 1003  2464          70       RM  ...    2007        WD        Normal
 1004  2465          50       RL  ...    2007        WD        Normal
 1005  2466          50       RL  ...    2007     ConLw        Family
 1006  2467          70       RM  ...    2007        WD        Normal
 1007  2468          45       RM  ...    2007        WD       AdjLand
 1008  2469          50       RM  ...    2007        WD       AdjLand
 1009  2470          80       RM  ...    2007        WD        Normal
 1010  2471          60       RM  ...    2007        WD        Normal
 1011  2472          50       RM  ...    2007        WD        Normal
 1012  2473         190       RM  ...    2007       COD       Abnorml
 1013  2474          50       RM  ...    2007       COD       Abnorml
 1014  2475          70       RL  ...    2007        WD        Normal
 1015  2476         190       RL  ...    2007        WD        Normal
 1016  2477         190       RL  ...    2007        WD        Normal
 1017  2478          85       RL  ...    2007        WD        Normal
 1018  2479          20       RL  ...    2007        WD        Normal
 1019  2480          80       RL  ...    2007        WD        Normal
 1020  2481          20       RL  ...    2007        WD        Normal
 1021  2482         190       RL  ...    2007        WD        Normal
 1022  2483          20       RL  ...    2007        WD        Normal
 1023  2484          20       RL  ...    2007        WD        Normal
 1024  2485          20       RL  ...    2007        WD        Normal
 1025  2486          20       RL  ...    2007        WD        Normal
 1026  2487          60       RL  ...    2007        WD        Normal
 1027  2488          50       RL  ...    2007        WD        Normal
 1028  2489          20       RL  ...    2007        WD        Normal
 1029  2490          20       RL  ...    2007       NaN        Normal
 1030  2491          20       RL  ...    2007        WD        Normal
 1031  2492          20       RL  ...    2007        WD        Normal
 1032  2493          20       RL  ...    2007        WD        Normal
 1033  2494          20       RL  ...    2007       COD        Normal
 1034  2495          20       RL  ...    2007        WD        Normal
 1035  2496          20       RL  ...    2007        WD        Normal
 1036  2497          50       RL  ...    2007        WD        Normal
 1037  2498          20       RL  ...    2007        WD        Normal
 1038  2499          30       RL  ...    2007        WD        Normal
 1039  2500         120       RL  ...    2007        WD        Normal
 1040  2501          20       RL  ...    2007        WD        Normal
 1041  2502          50       RL  ...    2007        WD        Normal
 1042  2503          50       RL  ...    2007        WD        Normal
 1043  2504          50       RL  ...    2007        WD        Normal
 1044  2505          60       RL  ...    2007       CWD        Normal
 1045  2506          20       RL  ...    2007       New       Partial
 1046  2507          20       RL  ...    2007       New       Partial
 1047  2508          20       RL  ...    2007       New       Partial
 1048  2509          20       RL  ...    2007        WD        Normal
 1049  2510          20       RL  ...    2007        WD        Normal
 1050  2511          20       RL  ...    2007        WD        Normal
 1051  2512          60       RL  ...    2007        WD        Normal
 1052  2513          60       RL  ...    2007        WD        Normal
 1053  2514          20       RL  ...    2007        WD        Normal
 1054  2515          20       RL  ...    2007        WD        Normal
 1055  2516          60       RL  ...    2007        WD        Normal
 1056  2517          20       RL  ...    2007        WD        Normal
 1057  2518          20       RL  ...    2007        WD        Normal
 1058  2519          60       RL  ...    2007        WD        Normal
 1059  2520          60       RL  ...    2007        WD        Normal
 1060  2521          60       RL  ...    2007        WD        Normal
 1061  2522          60       RL  ...    2007        WD        Normal
 1062  2523          20       RL  ...    2007        WD        Family
 1063  2524          80       RL  ...    2007        WD        Normal
 1064  2525          80       RL  ...    2007        WD        Normal
 1065  2526          20       RL  ...    2007        WD        Normal
 1066  2527          20       RL  ...    2007        WD        Normal
 1067  2528          20       RL  ...    2007       Con        Normal
 1068  2529          20       RL  ...    2007        WD        Normal
 1069  2530          20       RL  ...    2007        WD        Normal
 1070  2531          20       RL  ...    2007        WD        Normal
 1071  2532          60       RL  ...    2007        WD        Normal
 1072  2533          60       RL  ...    2007        WD        Normal
 1073  2534          20       RL  ...    2007        WD        Normal
 1074  2535          60       RL  ...    2007        WD        Normal
 1075  2536          60       RL  ...    2007        WD        Normal
 1076  2537          20       RL  ...    2007        WD        Normal
 1077  2538          60       RL  ...    2007       New       Partial
 1078  2539          20       RL  ...    2007        WD        Normal
 1079  2540          20       RL  ...    2007       New       Partial
 1080  2541          60       RL  ...    2007        WD        Normal
 1081  2542          60       RL  ...    2007        WD        Normal
 1082  2543          85       RL  ...    2007        WD       Abnorml
 1083  2544          20       RL  ...    2007       COD        Normal
 1084  2545          50       RL  ...    2007        WD        Normal
 1085  2546          20       RL  ...    2007        WD        Normal
 1086  2547          80       RL  ...    2007        WD        Normal
 1087  2548          90       RL  ...    2007        WD        Normal
 1088  2549          60       RL  ...    2007        WD        Normal
 1089  2550          20       RL  ...    2007       New       Partial
 1090  2551         180       RM  ...    2007        WD        Normal
 1091  2552          20       RL  ...    2007        WD        Normal
 1092  2553          90       RL  ...    2007        WD        Normal
 1093  2554          90       RL  ...    2007        WD       Abnorml
 1094  2555          40       RL  ...    2007        WD        Normal
 1095  2556          20       RL  ...    2007        WD        Normal
 1096  2557          20       RL  ...    2007       COD        Family
 1097  2558          90       RL  ...    2007        WD       AdjLand
 1098  2559          30       RL  ...    2007        WD        Normal
 1099  2560          50       RL  ...    2007        WD        Normal
 1100  2561          70       RL  ...    2007        WD        Normal
 1101  2562          70       RL  ...    2007       CWD        Normal
 1102  2563          70       RL  ...    2007        WD        Normal
 1103  2564          70       RL  ...    2007        WD        Normal
 1104  2565          20       RL  ...    2007        WD        Normal
 1105  2566          50       RL  ...    2007        WD        Normal
 1106  2567         190       RL  ...    2007        WD        Normal
 1107  2568          20       RL  ...    2007        WD        Normal
 1108  2569          20       RL  ...    2007       CWD        Normal
 1109  2570         160       RM  ...    2007        WD        Normal
 1110  2571          20       RL  ...    2007        WD        Normal
 1111  2572         120       RM  ...    2007        WD        Normal
 1112  2573          20       RL  ...    2007        WD        Normal
 1113  2574          20       RL  ...    2007        WD        Normal
 1114  2575          50       RM  ...    2007        WD        Normal
 1115  2576          50       RM  ...    2007        WD        Normal
 1116  2577          70       RM  ...    2007        WD        Alloca
 1117  2578          30       RM  ...    2007        WD        Normal
 1118  2579          50       RM  ...    2007        WD        Normal
 1119  2580         190  C (all)  ...    2007        WD        Normal
 1120  2581          20  C (all)  ...    2007        WD       Abnorml
 1121  2582          30  C (all)  ...    2007        WD        Normal
 1122  2583         120       RM  ...    2007       New       Partial
 1123  2584          85       RL  ...    2007        WD        Normal
 1124  2585          20       RL  ...    2007        WD        Normal
 1125  2586          20       RL  ...    2007        WD        Normal
 1126  2587          20       RL  ...    2007        WD        Normal
 1127  2588          80       RL  ...    2007        WD        Normal
 1128  2589          85       RL  ...    2007        WD        Normal
 1129  2590         120       RL  ...    2007        WD        Normal
 1130  2591          20       RL  ...    2007        WD        Normal
 1131  2592          20       RL  ...    2007       New       Partial
 1132  2593          20       RL  ...    2007       New       Partial
 1133  2594          20       RL  ...    2007        WD        Normal
 1134  2595          20       RL  ...    2007        WD        Normal
 1135  2596          20       RL  ...    2007        WD        Normal
 1136  2597          20       RL  ...    2007        WD        Normal
 1137  2598          60       RL  ...    2007        WD        Normal
 1138  2599          20       RL  ...    2007       New       Partial
 1139  2600          20       RL  ...    2007        WD        Normal
 1140  2601         120       RM  ...    2007        WD        Normal
 1141  2602         160       RM  ...    2007        WD        Normal
 1142  2603         180       RM  ...    2007        WD        Normal
 1143  2604         160       RM  ...    2007        WD        Normal
 1144  2605         160       RM  ...    2007       COD        Normal
 1145  2606          85       RL  ...    2007        WD        Normal
 1146  2607          80       RL  ...    2007        WD        Normal
 1147  2608          20       RL  ...    2007        WD        Normal
 1148  2609          60       RL  ...    2007        WD        Normal
 1149  2610          85       RL  ...    2007        WD        Normal
 1150  2611          20       RL  ...    2007       COD       Abnorml
 1151  2612          20       RL  ...    2007        WD        Normal
 1152  2613          20       RL  ...    2007        WD        Normal
 1153  2614          20       RL  ...    2007        WD        Normal
 1154  2615          20       RL  ...    2006        WD        Normal
 1155  2616          20       RL  ...    2006        WD        Normal
 1156  2617          20       RL  ...    2006        WD        Normal
 1157  2618          20       RL  ...    2006        WD       Abnorml
 1158  2619          20       RL  ...    2006        WD        Normal
 1159  2620          60       RL  ...    2006        WD        Normal
 1160  2621          60       RL  ...    2006        WD        Normal
 1161  2622          60       RL  ...    2006        WD        Normal
 1162  2623          60       RL  ...    2006        WD        Normal
 1163  2624          60       RL  ...    2006       New       Partial
 1164  2625         160       RL  ...    2006        WD        Normal
 1165  2626          20       RL  ...    2006        WD        Normal
 1166  2627         120       RL  ...    2006        WD        Normal
 1167  2628          60       RL  ...    2006       New       Partial
 1168  2629          60       RL  ...    2006       New       Partial
 1169  2630          60       RL  ...    2006       New       Partial
 1170  2631          60       RL  ...    2006       New       Partial
 1171  2632          60       RL  ...    2006       New       Partial
 1172  2633         120       RL  ...    2006        WD        Normal
 1173  2634          20       RL  ...    2006        WD        Normal
 1174  2635          85       RL  ...    2006        WD        Normal
 1175  2636          60       RL  ...    2006        WD        Normal
 1176  2637          85       RL  ...    2006        WD        Normal
 1177  2638          60       FV  ...    2006       New       Partial
 1178  2639          80       RL  ...    2006        WD        Normal
 1179  2640          20       RL  ...    2006        WD        Normal
 1180  2641          20       RL  ...    2006        WD        Normal
 1181  2642         120       RH  ...    2006        WD        Normal
 1182  2643         160       RM  ...    2006        WD        Normal
 1183  2644         160       RM  ...    2006        WD        Normal
 1184  2645         160       RM  ...    2006        WD        Normal
 1185  2646         160       RM  ...    2006        WD        Normal
 1186  2647         160       RM  ...    2006        WD        Normal
 1187  2648         120       RL  ...    2006        WD        Normal
 1188  2649          20       RL  ...    2006        WD        Normal
 1189  2650         120       RL  ...    2006        WD        Normal
 1190  2651         160       RL  ...    2006        WD        Normal
 1191  2652          60       RL  ...    2006       New       Partial
 1192  2653          20       RL  ...    2006        WD        Normal
 1193  2654          20       RL  ...    2006       New       Partial
 1194  2655          20       RL  ...    2006        WD        Normal
 1195  2656          60       RL  ...    2006       New       Partial
 1196  2657          60       RL  ...    2006       New       Partial
 1197  2658          60       RL  ...    2006       New       Partial
 1198  2659          60       RL  ...    2006       New       Partial
 1199  2660          60       RL  ...    2006       New       Partial
 1200  2661          20       RL  ...    2006       New       Partial
 1201  2662          20       RL  ...    2006        WD        Normal
 1202  2663          60       RL  ...    2006        WD        Normal
 1203  2664         120       RL  ...    2006        WD        Normal
 1204  2665          20       RL  ...    2006       New       Partial
 1205  2666         120       RL  ...    2006       New       Partial
 1206  2667          60       RL  ...    2006       New       Partial
 1207  2668          60       RL  ...    2006       New       Partial
 1208  2669          20       RL  ...    2006       New       Partial
 1209  2670          60       RL  ...    2006       New       Partial
 1210  2671          60       RL  ...    2006       New       Partial
 1211  2672         120       RL  ...    2006       New       Partial
 1212  2673         120       RL  ...    2006        WD        Normal
 1213  2674         120       RM  ...    2006        WD        Normal
 1214  2675         120       RL  ...    2006       New       Partial
 1215  2676          60       RL  ...    2006        WD        Normal
 1216  2677          60       RL  ...    2006        WD        Normal
 1217  2678          60       RL  ...    2006       New       Partial
 1218  2679          60       RL  ...    2006        WD        Normal
 1219  2680          60       RL  ...    2006        WD        Normal
 1220  2681          60       RL  ...    2006        WD        Normal
 1221  2682          60       RL  ...    2006        WD        Normal
 1222  2683          60       RL  ...    2006        WD        Normal
 1223  2684          60       RL  ...    2006        WD        Normal
 1224  2685          60       RL  ...    2006        WD        Normal
 1225  2686          60       RL  ...    2006       New       Partial
 1226  2687          20       RL  ...    2006       New       Partial
 1227  2688          20       RL  ...    2006       New       Partial
 1228  2689          20       FV  ...    2006       New       Partial
 1229  2690          60       FV  ...    2006       New       Partial
 1230  2691          60       FV  ...    2006        WD        Normal
 1231  2692          20       RL  ...    2006        WD        Normal
 1232  2693          20       RL  ...    2006       New       Partial
 1233  2694          20       RL  ...    2006       New       Partial
 1234  2695          60       RL  ...    2006        WD        Normal
 1235  2696          60       RL  ...    2006        WD        Normal
 1236  2697          60       RL  ...    2006        WD        Normal
 1237  2698          60       RL  ...    2006        WD        Family
 1238  2699         120       RL  ...    2006        WD        Normal
 1239  2700         120       RL  ...    2006        WD        Normal
 1240  2701          60       RL  ...    2006        WD        Normal
 1241  2702          20       RL  ...    2006        WD        Normal
 1242  2703          90       RM  ...    2006        WD        Normal
 1243  2704          20       RL  ...    2006        WD        Normal
 1244  2705          20       RL  ...    2006        WD        Normal
 1245  2706          20       RL  ...    2006       COD        Normal
 1246  2707          20       RL  ...    2006        WD        Normal
 1247  2708          20       RL  ...    2006        WD        Normal
 1248  2709          20       RL  ...    2006        WD        Normal
 1249  2710          20       RL  ...    2006        WD        Normal
 1250  2711          80       RL  ...    2006        WD        Normal
 1251  2712          60       RL  ...    2006        WD        Normal
 1252  2713         120       FV  ...    2006        WD        Normal
 1253  2714         160       FV  ...    2006        WD        Normal
 1254  2715         160       FV  ...    2006        WD        Normal
 1255  2716         160       FV  ...    2006        WD        Normal
 1256  2717          60       FV  ...    2006        WD        Normal
 1257  2718          20       FV  ...    2006        WD        Normal
 1258  2719         190       RL  ...    2006        WD        Normal
 1259  2720          20       RL  ...    2006        WD        Normal
 1260  2721          20       RL  ...    2006        WD        Normal
 1261  2722          60       RL  ...    2006        WD        Normal
 1262  2723          20       RL  ...    2006        WD       Abnorml
 1263  2724          85       RL  ...    2006        WD        Normal
 1264  2725          20       RL  ...    2006        WD        Normal
 1265  2726          80       RL  ...    2006        WD        Normal
 1266  2727         190       RL  ...    2006        WD       Abnorml
 1267  2728          20       RL  ...    2006        WD        Normal
 1268  2729          60       RL  ...    2006        WD        Normal
 1269  2730          20       RL  ...    2006        WD        Normal
 1270  2731          30       RL  ...    2006        WD        Normal
 1271  2732          20       RL  ...    2006        WD        Normal
 1272  2733          20       RL  ...    2006        WD        Normal
 1273  2734          20       RL  ...    2006        WD       Partial
 1274  2735          20       RL  ...    2006        WD        Normal
 1275  2736          60       RL  ...    2006        WD        Normal
 1276  2737          20       RL  ...    2006        WD        Normal
 1277  2738          90       RL  ...    2006        WD        Normal
 1278  2739          80       RL  ...    2006        WD        Normal
 1279  2740          20       RL  ...    2006        WD        Normal
 1280  2741          20       RL  ...    2006        WD        Normal
 1281  2742          20       RL  ...    2006        WD        Normal
 1282  2743          80       RL  ...    2006        WD        Normal
 1283  2744          20       RL  ...    2006        WD        Normal
 1284  2745          20       RL  ...    2006        WD       Abnorml
 1285  2746          20       RL  ...    2006        WD        Normal
 1286  2747          20       RL  ...    2006        WD        Normal
 1287  2748          80       RL  ...    2006        WD        Normal
 1288  2749          20       RL  ...    2006        WD        Normal
 1289  2750          20       RL  ...    2006        WD        Normal
 1290  2751          20       RL  ...    2006        WD        Normal
 1291  2752          30       RL  ...    2006       COD       Abnorml
 1292  2753          20       RL  ...    2006        WD        Normal
 1293  2754         190       RL  ...    2006        WD        Normal
 1294  2755          50       RL  ...    2006        WD        Normal
 1295  2756          30       RL  ...    2006        WD        Normal
 1296  2757          30       RL  ...    2006        WD        Normal
 1297  2758          50       RL  ...    2006        WD        Normal
 1298  2759          70       RL  ...    2006        WD        Normal
 1299  2760          50       RL  ...    2006       COD       Abnorml
 1300  2761          80       RL  ...    2006        WD        Normal
 1301  2762          20       RL  ...    2006        WD        Normal
 1302  2763          20       RL  ...    2006        WD        Normal
 1303  2764          20       RL  ...    2006        WD        Normal
 1304  2765          60       RL  ...    2006        WD        Normal
 1305  2766          50       RL  ...    2006        WD        Normal
 1306  2767          90       RL  ...    2006        WD        Normal
 1307  2768          90       RL  ...    2006        WD        Normal
 1308  2769          20       RL  ...    2006        WD        Normal
 1309  2770          20       RL  ...    2006        WD        Normal
 1310  2771          20       RL  ...    2006        WD        Normal
 1311  2772         190       RL  ...    2006        WD        Normal
 1312  2773          70       RM  ...    2006        WD        Normal
 1313  2774          50       RM  ...    2006        WD        Normal
 1314  2775          50       RM  ...    2006        WD        Normal
 1315  2776          50       RM  ...    2006        WD        Normal
 1316  2777          70       RM  ...    2006        WD        Normal
 1317  2778          70       RM  ...    2006        WD        Normal
 1318  2779         190       RM  ...    2006        WD        Normal
 1319  2780          30       RM  ...    2006       COD       Abnorml
 1320  2781          30       RM  ...    2006        WD        Normal
 1321  2782          20       RM  ...    2006       COD        Normal
 1322  2783          70       RM  ...    2006        WD        Normal
 1323  2784         190       RM  ...    2006        WD        Normal
 1324  2785          50       RM  ...    2006        WD        Normal
 1325  2786          30       RM  ...    2006        WD        Normal
 1326  2787          50       RM  ...    2006        WD        Normal
 1327  2788          30       RM  ...    2006        WD        Normal
 1328  2789          75       RM  ...    2006        WD        Normal
 1329  2790          90       RM  ...    2006        WD        Normal
 1330  2791          20       RM  ...    2006        WD        Normal
 1331  2792          50  C (all)  ...    2006     ConLD        Normal
 1332  2793          70       RL  ...    2006        WD        Normal
 1333  2794          50       RM  ...    2006     ConLI       Abnorml
 1334  2795          50       RM  ...    2006        WD        Normal
 1335  2796          30       RL  ...    2006        WD        Normal
 1336  2797          50       RM  ...    2006        WD        Normal
 1337  2798          50       RM  ...    2006        WD       Abnorml
 1338  2799          70       RM  ...    2006        WD        Normal
 1339  2800          30       RM  ...    2006        WD       Abnorml
 1340  2801          30       RM  ...    2006     ConLI        Family
 1341  2802          50       RL  ...    2006        WD        Normal
 1342  2803          90       RL  ...    2006        WD        Normal
 1343  2804          20       RL  ...    2006        WD        Normal
 1344  2805          30       RL  ...    2006        WD        Normal
 1345  2806          30       RL  ...    2006        WD        Normal
 1346  2807          20       RL  ...    2006        WD        Normal
 1347  2808          20       RL  ...    2006        WD        Normal
 1348  2809          80       RL  ...    2006        WD        Normal
 1349  2810          20       RL  ...    2006        WD       Abnorml
 1350  2811          20       RL  ...    2006        WD        Normal
 1351  2812          80       RL  ...    2006        WD        Normal
 1352  2813          90       RL  ...    2006        WD        Normal
 1353  2814          90       RL  ...    2006        WD        Normal
 1354  2815          30       RL  ...    2006        WD        Normal
 1355  2816          20       RL  ...    2006        WD        Normal
 1356  2817          20       RL  ...    2006        WD        Normal
 1357  2818          85       RL  ...    2006        WD        Normal
 1358  2819         150       RL  ...    2006        WD        Normal
 1359  2820          20       RL  ...    2006        WD        Normal
 1360  2821          50       RL  ...    2006        WD        Family
 1361  2822          70       RL  ...    2006        WD        Normal
 1362  2823          75       RL  ...    2006        WD        Normal
 1363  2824          80       RL  ...    2006        WD        Normal
 1364  2825          20       RL  ...    2006        WD        Normal
 1365  2826          20       RL  ...    2006        WD        Normal
 1366  2827          50       RL  ...    2006        WD        Normal
 1367  2828          60       RL  ...    2006        WD       Abnorml
 1368  2829          90       RL  ...    2006        WD        Normal
 1369  2830          60       RL  ...    2006       New       Partial
 1370  2831          20       RL  ...    2006        WD       Abnorml
 1371  2832          20       RL  ...    2006       New       Partial
 1372  2833          20       RL  ...    2006       New       Partial
 1373  2834          60       RL  ...    2006       New       Partial
 1374  2835          20       RL  ...    2006        WD        Normal
 1375  2836          60       RL  ...    2006        WD        Normal
 1376  2837          20       RL  ...    2006       COD       Abnorml
 1377  2838          20       RL  ...    2006        WD        Normal
 1378  2839          60       RL  ...    2006        WD        Normal
 1379  2840          20       RL  ...    2006        WD        Normal
 1380  2841          60       RL  ...    2006        WD        Normal
 1381  2842          60       RL  ...    2006        WD        Normal
 1382  2843          60       RL  ...    2006        WD        Normal
 1383  2844          80       RL  ...    2006        WD        Normal
 1384  2845          20       RL  ...    2006        WD        Normal
 1385  2846          60       RL  ...    2006        WD        Normal
 1386  2847          60       RL  ...    2006        WD        Normal
 1387  2848          20       RL  ...    2006        WD        Normal
 1388  2849          60       RL  ...    2006        WD        Normal
 1389  2850          60       RL  ...    2006        WD        Normal
 1390  2851          60       RL  ...    2006        WD        Normal
 1391  2852          60       RL  ...    2006        WD        Normal
 1392  2853          60       RL  ...    2006        WD        Normal
 1393  2854         120       RM  ...    2006        WD        Normal
 1394  2855          20       RL  ...    2006        WD        Normal
 1395  2856          60       RL  ...    2006       New       Partial
 1396  2857          60       RL  ...    2006        WD        Normal
 1397  2858          20       RL  ...    2006       New       Partial
 1398  2859          70       RL  ...    2006        WD        Normal
 1399  2860          90       RL  ...    2006        WD       AdjLand
 1400  2861          20       RL  ...    2006        WD       Abnorml
 1401  2862          60       RL  ...    2006        WD        Normal
 1402  2863          20       RL  ...    2006        WD        Normal
 1403  2864          60       RL  ...    2006     ConLD        Normal
 1404  2865         180       RM  ...    2006       New       Partial
 1405  2866         160       RM  ...    2006        WD        Normal
 1406  2867          50       RL  ...    2006        WD        Normal
 1407  2868          50       RL  ...    2006        WD       AdjLand
 1408  2869          50       RL  ...    2006        WD       AdjLand
 1409  2870          20       RL  ...    2006        WD       Abnorml
 1410  2871          50       RL  ...    2006       COD       Abnorml
 1411  2872          30       RL  ...    2006     ConLD        Normal
 1412  2873          50       RL  ...    2006        WD        Normal
 1413  2874          50       RL  ...    2006        WD        Normal
 1414  2875         190       RH  ...    2006        WD       Abnorml
 1415  2876          70       RL  ...    2006        WD        Normal
 1416  2877          70       RL  ...    2006        WD        Normal
 1417  2878          70       RL  ...    2006        WD       Abnorml
 1418  2879          50       RL  ...    2006        WD        Normal
 1419  2880          50       RL  ...    2006        WD        Normal
 1420  2881          50       RL  ...    2006        WD        Normal
 1421  2882          50       RL  ...    2006        WD        Normal
 1422  2883          50       RL  ...    2006        WD        Normal
 1423  2884          70       RL  ...    2006        WD        Normal
 1424  2885          70       RL  ...    2006        WD        Normal
 1425  2886          60       RL  ...    2006        WD        Normal
 1426  2887          30       RM  ...    2006        WD       AdjLand
 1427  2888          50       RM  ...    2006        WD        Normal
 1428  2889          30       RM  ...    2006        WD        Normal
 1429  2890          30       RM  ...    2006        WD        Normal
 1430  2891          50       RM  ...    2006        WD        Normal
 1431  2892          30  C (all)  ...    2006        WD       Abnorml
 1432  2893         190  C (all)  ...    2006        WD       Abnorml
 1433  2894          50  C (all)  ...    2006        WD        Normal
 1434  2895         120       RM  ...    2006       New       Partial
 1435  2896         120       RM  ...    2006        WD        Normal
 1436  2897          20       RL  ...    2006        WD        Normal
 1437  2898          90       RL  ...    2006        WD        Normal
 1438  2899          20       RL  ...    2006        WD        Normal
 1439  2900          80       RL  ...    2006        WD        Normal
 1440  2901          20       RL  ...    2006        WD        Alloca
 1441  2902          20       RL  ...    2006        WD        Normal
 1442  2903          20       RL  ...    2006       New       Partial
 1443  2904          20       RL  ...    2006       New       Partial
 1444  2905          20      NaN  ...    2006        WD        Normal
 1445  2906          90       RM  ...    2006        WD        Normal
 1446  2907         160       RM  ...    2006        WD        Normal
 1447  2908          20       RL  ...    2006        WD        Normal
 1448  2909          90       RL  ...    2006        WD        Normal
 1449  2910         180       RM  ...    2006        WD        Normal
 1450  2911         160       RM  ...    2006        WD        Normal
 1451  2912          20       RL  ...    2006        WD        Normal
 1452  2913         160       RM  ...    2006        WD       Abnorml
 1453  2914         160       RM  ...    2006        WD        Normal
 1454  2915         160       RM  ...    2006        WD        Normal
 1455  2916         160       RM  ...    2006        WD       Abnorml
 1456  2917          20       RL  ...    2006        WD       Abnorml
 1457  2918          85       RL  ...    2006        WD        Normal
 1458  2919          60       RL  ...    2006        WD        Normal
 
 [1459 rows x 80 columns]]
In [ ]:
dataset_combined
Out[ ]:
Id MSSubClass MSZoning LotFrontage LotArea Street Alley LotShape LandContour Utilities LotConfig LandSlope Neighborhood Condition1 Condition2 BldgType HouseStyle OverallQual OverallCond YearBuilt YearRemodAdd RoofStyle RoofMatl Exterior1st Exterior2nd MasVnrType MasVnrArea ExterQual ExterCond Foundation BsmtQual BsmtCond BsmtExposure BsmtFinType1 BsmtFinSF1 BsmtFinType2 BsmtFinSF2 BsmtUnfSF TotalBsmtSF Heating ... CentralAir Electrical 1stFlrSF 2ndFlrSF LowQualFinSF GrLivArea BsmtFullBath BsmtHalfBath FullBath HalfBath BedroomAbvGr KitchenAbvGr KitchenQual TotRmsAbvGrd Functional Fireplaces FireplaceQu GarageType GarageYrBlt GarageFinish GarageCars GarageArea GarageQual GarageCond PavedDrive WoodDeckSF OpenPorchSF EnclosedPorch 3SsnPorch ScreenPorch PoolArea PoolQC Fence MiscFeature MiscVal MoSold YrSold SaleType SaleCondition SalePrice
0 1 60 RL 65.0 8450 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 196.0 Gd TA PConc Gd TA No GLQ 706.0 Unf 0.0 150.0 856.0 GasA ... Y SBrkr 856 854 0 1710 1.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 2003.0 RFn 2.0 548.0 TA TA Y 0 61 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal 208500.0
1 2 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub FR2 Gtl Veenker Feedr Norm 1Fam 1Story 6 8 1976 1976 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Gd TA Gd ALQ 978.0 Unf 0.0 284.0 1262.0 GasA ... Y SBrkr 1262 0 0 1262 0.0 1.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1976.0 RFn 2.0 460.0 TA TA Y 298 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 181500.0
2 3 60 RL 68.0 11250 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2001 2002 Gable CompShg VinylSd VinylSd BrkFace 162.0 Gd TA PConc Gd TA Mn GLQ 486.0 Unf 0.0 434.0 920.0 GasA ... Y SBrkr 920 866 0 1786 1.0 0.0 2 1 3 1 Gd 6 Typ 1 TA Attchd 2001.0 RFn 2.0 608.0 TA TA Y 0 42 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal 223500.0
3 4 70 RL 60.0 9550 Pave NaN IR1 Lvl AllPub Corner Gtl Crawfor Norm Norm 1Fam 2Story 7 5 1915 1970 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA BrkTil TA Gd No ALQ 216.0 Unf 0.0 540.0 756.0 GasA ... Y SBrkr 961 756 0 1717 1.0 0.0 1 0 3 1 Gd 7 Typ 1 Gd Detchd 1998.0 Unf 3.0 642.0 TA TA Y 0 35 272 0 0 0 NaN NaN NaN 0 2 2006 WD Abnorml 140000.0
4 5 60 RL 84.0 14260 Pave NaN IR1 Lvl AllPub FR2 Gtl NoRidge Norm Norm 1Fam 2Story 8 5 2000 2000 Gable CompShg VinylSd VinylSd BrkFace 350.0 Gd TA PConc Gd TA Av GLQ 655.0 Unf 0.0 490.0 1145.0 GasA ... Y SBrkr 1145 1053 0 2198 1.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 2000.0 RFn 3.0 836.0 TA TA Y 192 84 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal 250000.0
5 6 50 RL 85.0 14115 Pave NaN IR1 Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1.5Fin 5 5 1993 1995 Gable CompShg VinylSd VinylSd None 0.0 TA TA Wood Gd TA No GLQ 732.0 Unf 0.0 64.0 796.0 GasA ... Y SBrkr 796 566 0 1362 1.0 0.0 1 1 1 1 TA 5 Typ 0 NaN Attchd 1993.0 Unf 2.0 480.0 TA TA Y 40 30 0 320 0 0 NaN MnPrv Shed 700 10 2009 WD Normal 143000.0
6 7 20 RL 75.0 10084 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2004 2005 Gable CompShg VinylSd VinylSd Stone 186.0 Gd TA PConc Ex TA Av GLQ 1369.0 Unf 0.0 317.0 1686.0 GasA ... Y SBrkr 1694 0 0 1694 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2004.0 RFn 2.0 636.0 TA TA Y 255 57 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 307000.0
7 8 60 RL NaN 10382 Pave NaN IR1 Lvl AllPub Corner Gtl NWAmes PosN Norm 1Fam 2Story 7 6 1973 1973 Gable CompShg HdBoard HdBoard Stone 240.0 TA TA CBlock Gd TA Mn ALQ 859.0 BLQ 32.0 216.0 1107.0 GasA ... Y SBrkr 1107 983 0 2090 1.0 0.0 2 1 3 1 TA 7 Typ 2 TA Attchd 1973.0 RFn 2.0 484.0 TA TA Y 235 204 228 0 0 0 NaN NaN Shed 350 11 2009 WD Normal 200000.0
8 9 50 RM 51.0 6120 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1.5Fin 7 5 1931 1950 Gable CompShg BrkFace Wd Shng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 952.0 952.0 GasA ... Y FuseF 1022 752 0 1774 0.0 0.0 2 0 2 2 TA 8 Min1 2 TA Detchd 1931.0 Unf 2.0 468.0 Fa TA Y 90 0 205 0 0 0 NaN NaN NaN 0 4 2008 WD Abnorml 129900.0
9 10 190 RL 50.0 7420 Pave NaN Reg Lvl AllPub Corner Gtl BrkSide Artery Artery 2fmCon 1.5Unf 5 6 1939 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No GLQ 851.0 Unf 0.0 140.0 991.0 GasA ... Y SBrkr 1077 0 0 1077 1.0 0.0 1 0 2 2 TA 5 Typ 2 TA Attchd 1939.0 RFn 1.0 205.0 Gd TA Y 0 4 0 0 0 0 NaN NaN NaN 0 1 2008 WD Normal 118000.0
10 11 20 RL 70.0 11200 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1965 1965 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Rec 906.0 Unf 0.0 134.0 1040.0 GasA ... Y SBrkr 1040 0 0 1040 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1965.0 Unf 1.0 384.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal 129500.0
11 12 60 RL 85.0 11924 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2005 2006 Hip CompShg WdShing Wd Shng Stone 286.0 Ex TA PConc Ex TA No GLQ 998.0 Unf 0.0 177.0 1175.0 GasA ... Y SBrkr 1182 1142 0 2324 1.0 0.0 3 0 4 1 Ex 11 Typ 2 Gd BuiltIn 2005.0 Fin 3.0 736.0 TA TA Y 147 21 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial 345000.0
12 13 20 RL NaN 12968 Pave NaN IR2 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 6 1962 1962 Hip CompShg HdBoard Plywood None 0.0 TA TA CBlock TA TA No ALQ 737.0 Unf 0.0 175.0 912.0 GasA ... Y SBrkr 912 0 0 912 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1962.0 Unf 1.0 352.0 TA TA Y 140 0 0 0 176 0 NaN NaN NaN 0 9 2008 WD Normal 144000.0
13 14 20 RL 91.0 10652 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2006 2007 Gable CompShg VinylSd VinylSd Stone 306.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1494.0 1494.0 GasA ... Y SBrkr 1494 0 0 1494 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 RFn 3.0 840.0 TA TA Y 160 33 0 0 0 0 NaN NaN NaN 0 8 2007 New Partial 279500.0
14 15 20 RL NaN 10920 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 5 1960 1960 Hip CompShg MetalSd MetalSd BrkFace 212.0 TA TA CBlock TA TA No BLQ 733.0 Unf 0.0 520.0 1253.0 GasA ... Y SBrkr 1253 0 0 1253 1.0 0.0 1 1 2 1 TA 5 Typ 1 Fa Attchd 1960.0 RFn 1.0 352.0 TA TA Y 0 213 176 0 0 0 NaN GdWo NaN 0 5 2008 WD Normal 157000.0
15 16 45 RM 51.0 6120 Pave NaN Reg Lvl AllPub Corner Gtl BrkSide Norm Norm 1Fam 1.5Unf 7 8 1929 2001 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 832.0 832.0 GasA ... Y FuseA 854 0 0 854 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1991.0 Unf 2.0 576.0 TA TA Y 48 112 0 0 0 0 NaN GdPrv NaN 0 7 2007 WD Normal 132000.0
16 17 20 RL NaN 11241 Pave NaN IR1 Lvl AllPub CulDSac Gtl NAmes Norm Norm 1Fam 1Story 6 7 1970 1970 Gable CompShg Wd Sdng Wd Sdng BrkFace 180.0 TA TA CBlock TA TA No ALQ 578.0 Unf 0.0 426.0 1004.0 GasA ... Y SBrkr 1004 0 0 1004 1.0 0.0 1 0 2 1 TA 5 Typ 1 TA Attchd 1970.0 Fin 2.0 480.0 TA TA Y 0 0 0 0 0 0 NaN NaN Shed 700 3 2010 WD Normal 149000.0
17 18 90 RL 72.0 10791 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm Duplex 1Story 4 5 1967 1967 Gable CompShg MetalSd MetalSd None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1296 0 0 1296 0.0 0.0 2 0 2 2 TA 6 Typ 0 NaN CarPort 1967.0 Unf 2.0 516.0 TA TA Y 0 0 0 0 0 0 NaN NaN Shed 500 10 2006 WD Normal 90000.0
18 19 20 RL 66.0 13695 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW RRAe Norm 1Fam 1Story 5 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc TA TA No GLQ 646.0 Unf 0.0 468.0 1114.0 GasA ... Y SBrkr 1114 0 0 1114 1.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN Detchd 2004.0 Unf 2.0 576.0 TA TA Y 0 102 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 159000.0
19 20 20 RL 70.0 7560 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1958 1965 Hip CompShg BrkFace Plywood None 0.0 TA TA CBlock TA TA No LwQ 504.0 Unf 0.0 525.0 1029.0 GasA ... Y SBrkr 1339 0 0 1339 0.0 0.0 1 0 3 1 TA 6 Min1 0 NaN Attchd 1958.0 Unf 1.0 294.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 5 2009 COD Abnorml 139000.0
20 21 60 RL 101.0 14215 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 380.0 Gd TA PConc Ex TA Av Unf 0.0 Unf 0.0 1158.0 1158.0 GasA ... Y SBrkr 1158 1218 0 2376 0.0 0.0 3 1 4 1 Gd 9 Typ 1 Gd BuiltIn 2005.0 RFn 3.0 853.0 TA TA Y 240 154 0 0 0 0 NaN NaN NaN 0 11 2006 New Partial 325300.0
21 22 45 RM 57.0 7449 Pave Grvl Reg Bnk AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Unf 7 7 1930 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 637.0 637.0 GasA ... Y FuseF 1108 0 0 1108 0.0 0.0 1 0 3 1 Gd 6 Typ 1 Gd Attchd 1930.0 Unf 1.0 280.0 TA TA N 0 0 205 0 0 0 NaN GdPrv NaN 0 6 2007 WD Normal 139400.0
22 23 20 RL 75.0 9742 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2002 2002 Hip CompShg VinylSd VinylSd BrkFace 281.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1777.0 1777.0 GasA ... Y SBrkr 1795 0 0 1795 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2002.0 RFn 2.0 534.0 TA TA Y 171 159 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal 230000.0
23 24 120 RM 44.0 4224 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 1Story 5 7 1976 1976 Gable CompShg CemntBd CmentBd None 0.0 TA TA PConc Gd TA No GLQ 840.0 Unf 0.0 200.0 1040.0 GasA ... Y SBrkr 1060 0 0 1060 1.0 0.0 1 0 3 1 TA 6 Typ 1 TA Attchd 1976.0 Unf 2.0 572.0 TA TA Y 100 110 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 129900.0
24 25 20 RL NaN 8246 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 8 1968 2001 Gable CompShg Plywood Plywood None 0.0 TA Gd CBlock TA TA Mn Rec 188.0 ALQ 668.0 204.0 1060.0 GasA ... Y SBrkr 1060 0 0 1060 1.0 0.0 1 0 3 1 Gd 6 Typ 1 TA Attchd 1968.0 Unf 1.0 270.0 TA TA Y 406 90 0 0 0 0 NaN MnPrv NaN 0 5 2010 WD Normal 154000.0
25 26 20 RL 110.0 14230 Pave NaN Reg Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 640.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1566.0 1566.0 GasA ... Y SBrkr 1600 0 0 1600 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2007.0 RFn 3.0 890.0 TA TA Y 0 56 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 256300.0
26 27 20 RL 60.0 7200 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 7 1951 2000 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Mn BLQ 234.0 Rec 486.0 180.0 900.0 GasA ... Y SBrkr 900 0 0 900 0.0 1.0 1 0 3 1 Gd 5 Typ 0 NaN Detchd 2005.0 Unf 2.0 576.0 TA TA Y 222 32 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 134800.0
27 28 20 RL 98.0 11478 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2007 2008 Gable CompShg VinylSd VinylSd Stone 200.0 Gd TA PConc Ex TA No GLQ 1218.0 Unf 0.0 486.0 1704.0 GasA ... Y SBrkr 1704 0 0 1704 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2008.0 RFn 3.0 772.0 TA TA Y 0 50 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 306000.0
28 29 20 RL 47.0 16321 Pave NaN IR1 Lvl AllPub CulDSac Gtl NAmes Norm Norm 1Fam 1Story 5 6 1957 1997 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA Gd BLQ 1277.0 Unf 0.0 207.0 1484.0 GasA ... Y SBrkr 1600 0 0 1600 1.0 0.0 1 0 2 1 TA 6 Typ 2 Gd Attchd 1957.0 RFn 1.0 319.0 TA TA Y 288 258 0 0 0 0 NaN NaN NaN 0 12 2006 WD Normal 207500.0
29 30 30 RM 60.0 6324 Pave NaN IR1 Lvl AllPub Inside Gtl BrkSide Feedr RRNn 1Fam 1Story 4 6 1927 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 520.0 520.0 GasA ... N SBrkr 520 0 0 520 0.0 0.0 1 0 1 1 Fa 4 Typ 0 NaN Detchd 1920.0 Unf 1.0 240.0 Fa TA Y 49 0 87 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 68500.0
30 31 70 C (all) 50.0 8500 Pave Pave Reg Lvl AllPub Inside Gtl IDOTRR Feedr Norm 1Fam 2Story 4 4 1920 1950 Gambrel CompShg BrkFace BrkFace None 0.0 TA Fa BrkTil TA TA No Unf 0.0 Unf 0.0 649.0 649.0 GasA ... N SBrkr 649 668 0 1317 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1920.0 Unf 1.0 250.0 TA Fa N 0 54 172 0 0 0 NaN MnPrv NaN 0 7 2008 WD Normal 40000.0
31 32 20 RL NaN 8544 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer Norm Norm 1Fam 1Story 5 6 1966 2006 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1228.0 1228.0 GasA ... Y SBrkr 1228 0 0 1228 0.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN Attchd 1966.0 Unf 1.0 271.0 TA TA Y 0 65 0 0 0 0 NaN MnPrv NaN 0 6 2008 WD Normal 149350.0
32 33 20 RL 85.0 11049 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA Av Unf 0.0 Unf 0.0 1234.0 1234.0 GasA ... Y SBrkr 1234 0 0 1234 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2007.0 RFn 2.0 484.0 TA TA Y 0 30 0 0 0 0 NaN NaN NaN 0 1 2008 WD Normal 179900.0
33 34 20 RL 70.0 10552 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1959 1959 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No Rec 1018.0 Unf 0.0 380.0 1398.0 GasA ... Y SBrkr 1700 0 0 1700 0.0 1.0 1 1 4 1 Gd 6 Typ 1 Gd Attchd 1959.0 RFn 2.0 447.0 TA TA Y 0 38 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 165500.0
34 35 120 RL 60.0 7313 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 9 5 2005 2005 Hip CompShg MetalSd MetalSd BrkFace 246.0 Ex TA PConc Ex TA No GLQ 1153.0 Unf 0.0 408.0 1561.0 GasA ... Y SBrkr 1561 0 0 1561 1.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2005.0 Fin 2.0 556.0 TA TA Y 203 47 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 277500.0
35 36 60 RL 108.0 13418 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2004 2005 Gable CompShg VinylSd VinylSd Stone 132.0 Gd TA PConc Ex TA Av Unf 0.0 Unf 0.0 1117.0 1117.0 GasA ... Y SBrkr 1132 1320 0 2452 0.0 0.0 3 1 4 1 Gd 9 Typ 1 Gd BuiltIn 2004.0 Fin 3.0 691.0 TA TA Y 113 32 0 0 0 0 NaN NaN NaN 0 9 2006 WD Normal 309000.0
36 37 20 RL 112.0 10859 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 5 5 1994 1995 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1097.0 1097.0 GasA ... Y SBrkr 1097 0 0 1097 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1995.0 Unf 2.0 672.0 TA TA Y 392 64 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 145000.0
37 38 20 RL 74.0 8532 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1954 1990 Hip CompShg Wd Sdng Wd Sdng BrkFace 650.0 TA TA CBlock TA TA No Rec 1213.0 Unf 0.0 84.0 1297.0 GasA ... Y SBrkr 1297 0 0 1297 0.0 1.0 1 0 3 1 TA 5 Typ 1 TA Attchd 1954.0 Fin 2.0 498.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal 153000.0
38 39 20 RL 68.0 7922 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1953 2007 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA TA No GLQ 731.0 Unf 0.0 326.0 1057.0 GasA ... Y SBrkr 1057 0 0 1057 1.0 0.0 1 0 3 1 Gd 5 Typ 0 NaN Detchd 1953.0 Unf 1.0 246.0 TA TA Y 0 52 0 0 0 0 NaN NaN NaN 0 1 2010 WD Abnorml 109000.0
39 40 90 RL 65.0 6040 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm Duplex 1Story 4 5 1955 1955 Gable CompShg AsbShng Plywood None 0.0 TA TA PConc NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N FuseP 1152 0 0 1152 0.0 0.0 2 0 2 2 Fa 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD AdjLand 82000.0
40 41 20 RL 84.0 8658 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1965 1965 Gable CompShg Wd Sdng Wd Sdng BrkFace 101.0 TA TA CBlock TA TA No Rec 643.0 Unf 0.0 445.0 1088.0 GasA ... Y SBrkr 1324 0 0 1324 0.0 0.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1965.0 RFn 2.0 440.0 TA TA Y 0 138 0 0 0 0 NaN GdWo NaN 0 12 2006 WD Abnorml 160000.0
41 42 20 RL 115.0 16905 Pave NaN Reg Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 5 6 1959 1959 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA TA Gd BLQ 967.0 Unf 0.0 383.0 1350.0 GasA ... Y SBrkr 1328 0 0 1328 0.0 1.0 1 1 2 1 TA 5 Typ 2 Gd Attchd 1959.0 RFn 1.0 308.0 TA TA P 0 104 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 170000.0
42 43 85 RL NaN 9180 Pave NaN IR1 Lvl AllPub CulDSac Gtl SawyerW Norm Norm 1Fam SFoyer 5 7 1983 1983 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA Av ALQ 747.0 LwQ 93.0 0.0 840.0 GasA ... Y SBrkr 884 0 0 884 1.0 0.0 1 0 2 1 Gd 5 Typ 0 NaN Attchd 1983.0 RFn 2.0 504.0 TA Gd Y 240 0 0 0 0 0 NaN MnPrv NaN 0 12 2007 WD Normal 144000.0
43 44 20 RL NaN 9200 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 1Story 5 6 1975 1980 Hip CompShg VinylSd VinylSd None 0.0 TA TA CBlock Gd TA Av LwQ 280.0 BLQ 491.0 167.0 938.0 GasA ... Y SBrkr 938 0 0 938 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1977.0 Unf 1.0 308.0 TA TA Y 145 0 0 0 0 0 NaN MnPrv NaN 0 7 2008 WD Normal 130250.0
44 45 20 RL 70.0 7945 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1959 1959 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA CBlock TA TA No ALQ 179.0 BLQ 506.0 465.0 1150.0 GasA ... Y FuseA 1150 0 0 1150 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1959.0 RFn 1.0 300.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 141000.0
45 46 120 RL 61.0 7658 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 9 5 2005 2005 Hip CompShg MetalSd MetalSd BrkFace 412.0 Ex TA PConc Ex TA No GLQ 456.0 Unf 0.0 1296.0 1752.0 GasA ... Y SBrkr 1752 0 0 1752 1.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2005.0 RFn 2.0 576.0 TA TA Y 196 82 0 0 0 0 NaN NaN NaN 0 2 2010 WD Normal 319900.0
46 47 50 RL 48.0 12822 Pave NaN IR1 Lvl AllPub CulDSac Gtl Mitchel Norm Norm 1Fam 1.5Fin 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA No GLQ 1351.0 Unf 0.0 83.0 1434.0 GasA ... Y SBrkr 1518 631 0 2149 1.0 0.0 1 1 1 1 Gd 6 Typ 1 Ex Attchd 2003.0 RFn 2.0 670.0 TA TA Y 168 43 0 0 198 0 NaN NaN NaN 0 8 2009 WD Abnorml 239686.0
47 48 20 FV 84.0 11096 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 24.0 Unf 0.0 1632.0 1656.0 GasA ... Y SBrkr 1656 0 0 1656 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2006.0 RFn 3.0 826.0 TA TA Y 0 146 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 249700.0
48 49 190 RM 33.0 4456 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 2fmCon 2Story 4 5 1920 2008 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 736.0 736.0 GasA ... Y SBrkr 736 716 0 1452 0.0 0.0 2 0 2 3 TA 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 102 0 0 0 NaN NaN NaN 0 6 2009 New Partial 113000.0
49 50 20 RL 66.0 7742 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 7 1966 1966 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No BLQ 763.0 Unf 0.0 192.0 955.0 GasA ... Y SBrkr 955 0 0 955 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1966.0 Unf 1.0 386.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 1 2007 WD Normal 127000.0
50 51 60 RL NaN 13869 Pave NaN IR2 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 6 6 1997 1997 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Av GLQ 182.0 Unf 0.0 612.0 794.0 GasA ... Y SBrkr 794 676 0 1470 0.0 1.0 2 0 3 1 TA 6 Typ 0 NaN Attchd 1997.0 Fin 2.0 388.0 TA TA Y 0 75 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 177000.0
51 52 50 RM 52.0 6240 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 6 1934 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 816.0 816.0 GasA ... Y SBrkr 816 0 360 1176 0.0 0.0 1 0 3 1 TA 6 Typ 1 Gd Detchd 1985.0 Unf 2.0 528.0 TA TA Y 112 0 0 0 0 0 NaN MnPrv Shed 400 9 2006 WD Normal 114500.0
52 53 90 RM 110.0 8472 Grvl NaN IR2 Bnk AllPub Corner Mod IDOTRR RRNn Norm Duplex 1Story 5 5 1963 1963 Gable CompShg Wd Sdng Wd Sdng None 0.0 Fa TA CBlock Gd TA Gd LwQ 104.0 GLQ 712.0 0.0 816.0 GasA ... N SBrkr 816 0 0 816 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN CarPort 1963.0 Unf 2.0 516.0 TA TA Y 106 0 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 110000.0
53 54 20 RL 68.0 50271 Pave NaN IR1 Low AllPub Inside Gtl Veenker Norm Norm 1Fam 1Story 9 5 1981 1987 Gable WdShngl WdShing Wd Shng None 0.0 Gd TA CBlock Ex TA Gd GLQ 1810.0 Unf 0.0 32.0 1842.0 GasA ... Y SBrkr 1842 0 0 1842 2.0 0.0 0 1 0 1 Gd 5 Typ 1 Gd Attchd 1981.0 Fin 3.0 894.0 TA TA Y 857 72 0 0 0 0 NaN NaN NaN 0 11 2006 WD Normal 385000.0
54 55 80 RL 60.0 7134 Pave NaN Reg Bnk AllPub Inside Mod NAmes Norm Norm 1Fam SLvl 5 5 1955 1955 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No ALQ 384.0 Unf 0.0 0.0 384.0 GasA ... Y SBrkr 1360 0 0 1360 0.0 0.0 1 0 3 1 TA 6 Min1 1 TA Detchd 1962.0 Unf 2.0 572.0 TA TA Y 0 50 0 0 0 0 NaN MnPrv NaN 0 2 2007 WD Normal 130000.0
55 56 20 RL 100.0 10175 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1964 1964 Gable CompShg HdBoard Plywood BrkFace 272.0 TA TA CBlock TA TA No BLQ 490.0 Unf 0.0 935.0 1425.0 GasA ... Y SBrkr 1425 0 0 1425 0.0 0.0 2 0 3 1 TA 7 Typ 1 Gd Attchd 1964.0 RFn 2.0 576.0 TA TA Y 0 0 0 407 0 0 NaN NaN NaN 0 7 2008 WD Normal 180500.0
56 57 160 FV 24.0 2645 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 8 5 1999 2000 Gable CompShg MetalSd MetalSd BrkFace 456.0 Gd TA PConc Gd TA No GLQ 649.0 Unf 0.0 321.0 970.0 GasA ... Y SBrkr 983 756 0 1739 1.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1999.0 Fin 2.0 480.0 TA TA Y 115 0 0 0 0 0 NaN NaN NaN 0 8 2009 WD Abnorml 172500.0
57 58 60 RL 89.0 11645 Pave NaN IR1 Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 860.0 860.0 GasA ... Y SBrkr 860 860 0 1720 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2004.0 RFn 2.0 565.0 TA TA Y 0 70 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal 196500.0
58 59 60 RL 66.0 13682 Pave NaN IR2 HLS AllPub CulDSac Gtl StoneBr Norm Norm 1Fam 2Story 10 5 2006 2006 Hip CompShg VinylSd VinylSd BrkFace 1031.0 Ex TA PConc Ex TA Gd Unf 0.0 Unf 0.0 1410.0 1410.0 GasA ... Y SBrkr 1426 1519 0 2945 0.0 0.0 3 1 3 1 Gd 10 Typ 1 Gd BuiltIn 2006.0 Fin 3.0 641.0 TA TA Y 192 0 37 0 0 0 NaN NaN NaN 0 10 2006 New Partial 438780.0
59 60 20 RL 60.0 7200 Pave NaN Reg Bnk AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 7 1972 1972 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA Av ALQ 632.0 Unf 0.0 148.0 780.0 GasA ... Y SBrkr 780 0 0 780 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1973.0 Unf 1.0 352.0 TA TA Y 196 0 0 0 0 0 NaN MnPrv NaN 0 1 2008 WD Normal 124900.0
60 61 20 RL 63.0 13072 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW RRAe Norm 1Fam 1Story 6 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No ALQ 941.0 Unf 0.0 217.0 1158.0 GasA ... Y SBrkr 1158 0 0 1158 1.0 0.0 1 1 3 1 Gd 5 Typ 0 NaN Detchd 2006.0 Unf 2.0 576.0 TA TA Y 0 50 0 0 0 0 NaN NaN NaN 0 5 2006 New Partial 158000.0
61 62 75 RM 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 2.5Unf 5 7 1920 1996 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA Fa No Unf 0.0 Unf 0.0 530.0 530.0 GasA ... N SBrkr 581 530 0 1111 0.0 0.0 1 0 3 1 Fa 6 Typ 0 NaN Detchd 1935.0 Unf 1.0 288.0 TA TA N 0 0 144 0 0 0 NaN NaN NaN 0 3 2007 WD Normal 101000.0
62 63 120 RL 44.0 6442 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd Stone 178.0 Gd TA PConc Gd Gd Mn GLQ 24.0 Unf 0.0 1346.0 1370.0 GasA ... Y SBrkr 1370 0 0 1370 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2006.0 RFn 2.0 484.0 TA TA Y 120 49 0 0 0 0 NaN NaN NaN 0 10 2007 WD Normal 202500.0
63 64 70 RM 50.0 10300 Pave NaN IR1 Bnk AllPub Inside Gtl OldTown RRAn Feedr 1Fam 2Story 7 6 1921 1950 Gable CompShg Stucco Stucco None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 576.0 576.0 GasA ... Y SBrkr 902 808 0 1710 0.0 0.0 2 0 3 1 TA 9 Typ 0 NaN Detchd 1990.0 Unf 2.0 480.0 TA TA Y 12 11 64 0 0 0 NaN GdPrv NaN 0 4 2010 WD Normal 140000.0
64 65 60 RL NaN 9375 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1997 1998 Gable CompShg VinylSd VinylSd BrkFace 573.0 TA TA PConc Gd TA No GLQ 739.0 Unf 0.0 318.0 1057.0 GasA ... Y SBrkr 1057 977 0 2034 1.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 1998.0 RFn 2.0 645.0 TA TA Y 576 36 0 0 0 0 NaN GdPrv NaN 0 2 2009 WD Normal 219500.0
65 66 60 RL 76.0 9591 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2004 2005 Gable CompShg VinylSd VinylSd BrkFace 344.0 Gd TA PConc Ex TA Av Unf 0.0 Unf 0.0 1143.0 1143.0 GasA ... Y SBrkr 1143 1330 0 2473 0.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd BuiltIn 2004.0 RFn 3.0 852.0 TA TA Y 192 151 0 0 0 0 NaN NaN NaN 0 10 2007 WD Normal 317000.0
66 67 20 RL NaN 19900 Pave NaN Reg Lvl AllPub Inside Gtl NAmes PosA Norm 1Fam 1Story 7 5 1970 1989 Gable CompShg Plywood Plywood BrkFace 287.0 TA TA CBlock Gd TA Gd GLQ 912.0 Unf 0.0 1035.0 1947.0 GasA ... Y SBrkr 2207 0 0 2207 1.0 0.0 2 0 3 1 TA 7 Min1 1 Gd Attchd 1970.0 RFn 2.0 576.0 TA TA Y 301 0 0 0 0 0 NaN NaN NaN 0 7 2010 WD Normal 180000.0
67 68 20 RL 72.0 10665 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 167.0 Gd TA PConc Gd TA Av GLQ 1013.0 Unf 0.0 440.0 1453.0 GasA ... Y SBrkr 1479 0 0 1479 1.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2003.0 RFn 2.0 558.0 TA TA Y 144 29 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 226000.0
68 69 30 RM 47.0 4608 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Artery Norm 1Fam 1Story 4 6 1945 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No Unf 0.0 Unf 0.0 747.0 747.0 GasA ... Y SBrkr 747 0 0 747 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1945.0 Unf 1.0 220.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 80000.0
69 70 50 RL 81.0 15593 Pave NaN Reg Lvl AllPub Corner Gtl ClearCr Norm Norm 1Fam 1.5Fin 7 4 1953 1953 Gable CompShg BrkFace AsbShng None 0.0 Gd TA CBlock TA TA No BLQ 603.0 Unf 0.0 701.0 1304.0 GasW ... Y SBrkr 1304 983 0 2287 0.0 0.0 2 0 3 1 TA 7 Typ 1 TA Attchd 1953.0 Fin 2.0 667.0 TA TA Y 0 21 114 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 225000.0
70 71 20 RL 95.0 13651 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 7 6 1973 1973 Gable CompShg Plywood Plywood BrkFace 1115.0 TA Gd CBlock Gd TA Gd ALQ 1880.0 Unf 0.0 343.0 2223.0 GasA ... Y SBrkr 2223 0 0 2223 1.0 0.0 2 0 3 1 TA 8 Typ 2 Gd Attchd 1973.0 Fin 2.0 516.0 TA TA Y 300 0 0 0 0 0 NaN NaN NaN 0 2 2007 WD Normal 244000.0
71 72 20 RL 69.0 7599 Pave NaN Reg Lvl AllPub Corner Gtl Mitchel Norm Norm 1Fam 1Story 4 6 1982 2006 Gable CompShg HdBoard Plywood None 0.0 TA TA CBlock TA TA No ALQ 565.0 Unf 0.0 280.0 845.0 GasA ... Y SBrkr 845 0 0 845 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1987.0 Unf 2.0 360.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 129500.0
72 73 60 RL 74.0 10141 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 7 5 1998 1998 Gable CompShg VinylSd VinylSd BrkFace 40.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 832.0 832.0 GasA ... Y SBrkr 885 833 0 1718 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1998.0 Fin 2.0 427.0 TA TA Y 0 94 0 0 291 0 NaN NaN NaN 0 12 2009 WD Normal 185000.0
73 74 20 RL 85.0 10200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1954 2003 Gable CompShg Wd Sdng Wd Sdng BrkFace 104.0 TA TA CBlock TA TA No ALQ 320.0 BLQ 362.0 404.0 1086.0 GasA ... Y SBrkr 1086 0 0 1086 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1989.0 Unf 2.0 490.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 5 2010 WD Normal 144900.0
74 75 50 RM 60.0 5790 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 2Story 3 6 1915 1950 Gambrel CompShg VinylSd VinylSd None 0.0 Gd Gd CBlock Fa TA No Unf 0.0 Unf 0.0 840.0 840.0 GasA ... N SBrkr 840 765 0 1605 0.0 0.0 2 0 3 2 TA 8 Typ 0 NaN Detchd 1915.0 Unf 1.0 379.0 TA TA Y 0 0 202 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 107400.0
75 76 180 RM 21.0 1596 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs SLvl 4 5 1973 1973 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock Gd TA Gd GLQ 462.0 Unf 0.0 0.0 462.0 GasA ... Y SBrkr 526 462 0 988 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN BuiltIn 1973.0 Unf 1.0 297.0 TA TA Y 120 101 0 0 0 0 NaN GdWo NaN 0 11 2009 WD Normal 91000.0
76 77 20 RL NaN 8475 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 4 7 1956 1956 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No ALQ 228.0 Unf 0.0 724.0 952.0 GasA ... Y FuseA 952 0 0 952 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1956.0 Unf 1.0 283.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal 135750.0
77 78 50 RM 50.0 8635 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 5 1948 2001 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No BLQ 336.0 GLQ 41.0 295.0 672.0 GasA ... Y SBrkr 1072 213 0 1285 1.0 0.0 1 0 2 1 TA 6 Min1 0 NaN Detchd 1948.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 1 2008 WD Normal 127000.0
78 79 90 RL 72.0 10778 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm Duplex 1Story 4 5 1968 1968 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1768.0 1768.0 GasA ... N SBrkr 1768 0 0 1768 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 136500.0
79 80 50 RM 60.0 10440 Pave Grvl Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 2Story 5 6 1910 1981 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 440.0 440.0 GasA ... Y SBrkr 682 548 0 1230 0.0 0.0 1 1 2 1 TA 5 Typ 0 NaN Detchd 1966.0 Unf 2.0 440.0 TA TA Y 74 0 128 0 0 0 NaN MnPrv NaN 0 5 2009 WD Normal 110000.0
80 81 60 RL 100.0 13000 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 2Story 6 6 1968 1968 Gable CompShg VinylSd VinylSd BrkFace 576.0 TA Gd CBlock Gd TA No Rec 448.0 Unf 0.0 448.0 896.0 GasA ... Y SBrkr 1182 960 0 2142 0.0 0.0 2 1 4 1 Gd 8 Typ 1 Gd Attchd 1968.0 Fin 1.0 509.0 TA TA Y 0 72 0 0 252 0 NaN NaN NaN 0 6 2009 WD Normal 193500.0
81 82 120 RM 32.0 4500 Pave NaN Reg Lvl AllPub FR2 Gtl Mitchel Norm Norm TwnhsE 1Story 6 5 1998 1998 Hip CompShg VinylSd VinylSd BrkFace 443.0 TA Gd PConc Ex Gd No GLQ 1201.0 Unf 0.0 36.0 1237.0 GasA ... Y SBrkr 1337 0 0 1337 1.0 0.0 2 0 2 1 TA 5 Typ 0 NaN Attchd 1998.0 Fin 2.0 405.0 TA TA Y 0 199 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal 153500.0
82 83 20 RL 78.0 10206 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 468.0 TA TA PConc Gd TA No GLQ 33.0 Unf 0.0 1530.0 1563.0 GasA ... Y SBrkr 1563 0 0 1563 0.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2007.0 RFn 3.0 758.0 TA TA Y 144 99 0 0 0 0 NaN NaN NaN 0 10 2008 WD Normal 245000.0
83 84 20 RL 80.0 8892 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1960 1960 Gable CompShg MetalSd MetalSd BrkCmn 66.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1065.0 1065.0 GasA ... Y SBrkr 1065 0 0 1065 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1974.0 Unf 2.0 461.0 TA TA Y 74 0 0 0 0 0 NaN NaN NaN 0 7 2007 COD Normal 126500.0
84 85 80 RL NaN 8530 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam SLvl 7 5 1995 1996 Gable CompShg HdBoard HdBoard BrkFace 22.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 384.0 384.0 GasA ... Y SBrkr 804 670 0 1474 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA BuiltIn 1995.0 Fin 2.0 400.0 TA TA Y 120 72 0 0 0 0 NaN NaN Shed 700 5 2009 WD Normal 168500.0
85 86 60 RL 121.0 16059 Pave NaN Reg Lvl AllPub Corner Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1991 1992 Hip CompShg HdBoard HdBoard BrkFace 284.0 Gd TA CBlock Gd TA No Unf 0.0 Unf 0.0 1288.0 1288.0 GasA ... Y SBrkr 1301 1116 0 2417 0.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1991.0 Unf 2.0 462.0 TA TA Y 127 82 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 260000.0
86 87 60 RL 122.0 11911 Pave NaN IR2 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 684.0 684.0 GasA ... Y SBrkr 684 876 0 1560 0.0 0.0 2 1 3 1 Gd 6 Typ 1 Gd BuiltIn 2005.0 Fin 2.0 400.0 TA TA Y 100 38 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal 174000.0
87 88 160 FV 40.0 3951 Pave Pave Reg Lvl AllPub Corner Gtl Somerst Norm Norm TwnhsE 2Story 6 5 2009 2009 Gable CompShg VinylSd VinylSd Stone 76.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 612.0 612.0 GasA ... Y SBrkr 612 612 0 1224 0.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Detchd 2009.0 RFn 2.0 528.0 TA TA Y 0 234 0 0 0 0 NaN NaN NaN 0 6 2009 New Partial 164500.0
88 89 50 C (all) 105.0 8470 Pave NaN IR1 Lvl AllPub Corner Gtl IDOTRR Feedr Feedr 1Fam 1.5Fin 3 2 1915 1982 Hip CompShg Plywood Plywood None 0.0 Fa Fa CBlock TA Fa No Unf 0.0 Unf 0.0 1013.0 1013.0 GasA ... N SBrkr 1013 0 513 1526 0.0 0.0 1 0 2 1 Fa 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 156 0 0 0 NaN MnPrv NaN 0 10 2009 ConLD Abnorml 85000.0
89 90 20 RL 60.0 8070 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 4 5 1994 1995 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No GLQ 588.0 Unf 0.0 402.0 990.0 GasA ... Y SBrkr 990 0 0 990 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 123600.0
90 91 20 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 4 5 1950 1950 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y FuseA 1040 0 0 1040 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1950.0 Unf 2.0 420.0 TA TA Y 0 29 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 109900.0
91 92 20 RL 85.0 8500 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 3 1961 1961 Hip CompShg HdBoard HdBoard BrkCmn 203.0 TA TA CBlock TA TA No Rec 600.0 Unf 0.0 635.0 1235.0 GasA ... Y SBrkr 1235 0 0 1235 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Attchd 1961.0 Unf 2.0 480.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 12 2006 WD Abnorml 98600.0
92 93 30 RL 80.0 13360 Pave Grvl IR1 HLS AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 5 7 1921 2006 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd BrkTil Gd TA No ALQ 713.0 Unf 0.0 163.0 876.0 GasA ... Y SBrkr 964 0 0 964 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1921.0 Unf 2.0 432.0 TA TA Y 0 0 44 0 0 0 NaN NaN NaN 0 8 2009 WD Normal 163500.0
93 94 190 C (all) 60.0 7200 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 2fmCon 2.5Unf 6 6 1910 1998 Hip CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA Fa Mn Rec 1046.0 Unf 0.0 168.0 1214.0 GasW ... N SBrkr 1260 1031 0 2291 0.0 1.0 2 0 4 2 TA 9 Typ 1 Gd Detchd 1900.0 Unf 2.0 506.0 TA TA Y 0 0 0 0 99 0 NaN NaN NaN 0 11 2007 WD Normal 133900.0
94 95 60 RL 69.0 9337 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 6 5 1997 1997 Gable CompShg VinylSd VinylSd None 0.0 TA Gd PConc Gd TA No GLQ 648.0 Unf 0.0 176.0 824.0 GasA ... Y SBrkr 905 881 0 1786 1.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1997.0 RFn 2.0 684.0 TA TA Y 0 162 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 204750.0
95 96 60 RL NaN 9765 Pave NaN IR2 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 6 8 1993 1993 Gable CompShg VinylSd VinylSd BrkFace 68.0 Ex Gd PConc Gd Gd No ALQ 310.0 Unf 0.0 370.0 680.0 GasA ... Y SBrkr 680 790 0 1470 0.0 0.0 2 1 3 1 TA 6 Typ 1 TA BuiltIn 1993.0 Fin 2.0 420.0 TA TA Y 232 63 0 0 0 0 NaN NaN Shed 480 4 2009 WD Normal 185000.0
96 97 20 RL 78.0 10264 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 1999 1999 Gable CompShg VinylSd VinylSd BrkFace 183.0 Gd TA PConc Gd TA Av ALQ 1162.0 Unf 0.0 426.0 1588.0 GasA ... Y SBrkr 1588 0 0 1588 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1999.0 RFn 2.0 472.0 TA TA Y 158 29 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal 214000.0
97 98 20 RL 73.0 10921 Pave NaN Reg HLS AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 5 1965 1965 Hip CompShg HdBoard HdBoard BrkFace 48.0 TA TA CBlock TA TA No Rec 520.0 Unf 0.0 440.0 960.0 GasA ... Y FuseF 960 0 0 960 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1965.0 Fin 1.0 432.0 TA TA P 120 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 94750.0
98 99 30 RL 85.0 10625 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 1Story 5 5 1920 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No ALQ 108.0 Unf 0.0 350.0 458.0 GasA ... N SBrkr 835 0 0 835 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Basment 1920.0 Unf 1.0 366.0 Fa TA Y 0 0 77 0 0 0 NaN NaN Shed 400 5 2010 COD Abnorml 83000.0
99 100 20 RL 77.0 9320 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 4 5 1959 1959 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No ALQ 569.0 Unf 0.0 381.0 950.0 GasA ... Y SBrkr 1225 0 0 1225 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 352 0 0 0 0 0 NaN NaN Shed 400 1 2010 WD Normal 128950.0
100 101 20 RL NaN 10603 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 7 1977 2001 Gable CompShg Plywood Plywood BrkFace 28.0 TA TA PConc TA TA Mn ALQ 1200.0 Unf 0.0 410.0 1610.0 GasA ... Y SBrkr 1610 0 0 1610 1.0 0.0 2 0 3 1 Gd 6 Typ 2 TA Attchd 1977.0 RFn 2.0 480.0 TA TA Y 168 68 0 0 0 0 NaN NaN NaN 0 2 2010 WD Normal 205000.0
101 102 60 RL 77.0 9206 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 6 5 1985 1985 Gable CompShg HdBoard HdBoard BrkFace 336.0 Gd TA CBlock Gd TA No Unf 0.0 Unf 0.0 741.0 741.0 GasA ... Y SBrkr 977 755 0 1732 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1985.0 Fin 2.0 476.0 TA TA Y 192 46 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 178000.0
102 103 90 RL 64.0 7018 Pave NaN Reg Bnk AllPub Inside Gtl SawyerW Norm Norm Duplex 1Story 5 5 1979 1979 Gable CompShg HdBoard HdBoard None 0.0 TA Fa Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1535 0 0 1535 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Attchd 1979.0 Unf 2.0 410.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Alloca 118964.0
103 104 20 RL 94.0 10402 Pave NaN IR1 Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2009 2009 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1226.0 1226.0 GasA ... Y SBrkr 1226 0 0 1226 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2009.0 RFn 3.0 740.0 TA TA Y 0 36 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 198900.0
104 105 50 RM NaN 7758 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Norm Norm 1Fam 1.5Fin 7 4 1931 1950 Gable CompShg Stucco Stucco BrkFace 600.0 TA Fa PConc TA TA No LwQ 224.0 Unf 0.0 816.0 1040.0 GasA ... Y FuseF 1226 592 0 1818 0.0 0.0 1 1 4 1 TA 7 Typ 2 TA Detchd 1951.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 184 0 NaN NaN NaN 0 6 2007 WD Normal 169500.0
105 106 60 FV 75.0 9375 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 2003 2004 Hip CompShg VinylSd VinylSd BrkFace 768.0 Gd TA PConc Ex TA No Unf 0.0 Unf 0.0 1053.0 1053.0 GasA ... Y SBrkr 1053 939 0 1992 0.0 0.0 2 1 3 1 Gd 9 Typ 1 Gd Attchd 2003.0 RFn 2.0 648.0 TA TA Y 140 45 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 250000.0
106 107 30 RM 60.0 10800 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 4 7 1885 1995 Mansard CompShg VinylSd VinylSd None 0.0 TA TA BrkTil Fa TA No Unf 0.0 Unf 0.0 641.0 641.0 GasA ... Y SBrkr 1047 0 0 1047 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1954.0 Unf 1.0 273.0 Fa Fa N 0 0 0 0 0 0 NaN NaN Shed 450 8 2007 WD Normal 100000.0
107 108 20 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 5 1948 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No ALQ 104.0 BLQ 169.0 516.0 789.0 GasA ... Y SBrkr 789 0 0 789 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1948.0 Unf 1.0 250.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Partial 115000.0
108 109 50 RM 85.0 8500 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Artery Norm 1Fam 1.5Fin 5 7 1919 2005 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 793.0 793.0 GasW ... N FuseF 997 520 0 1517 0.0 0.0 2 0 3 1 Fa 7 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 144 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 115000.0
109 110 20 RL 105.0 11751 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 6 1977 1977 Hip CompShg Plywood Plywood BrkFace 480.0 TA TA CBlock Gd TA No BLQ 705.0 Unf 0.0 1139.0 1844.0 GasA ... Y SBrkr 1844 0 0 1844 0.0 0.0 2 0 3 1 TA 7 Typ 1 TA Attchd 1977.0 RFn 2.0 546.0 TA TA Y 0 122 0 0 0 0 NaN MnPrv NaN 0 1 2010 COD Normal 190000.0
110 111 50 RL 75.0 9525 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 6 4 1954 1972 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA Fa No Rec 444.0 Unf 0.0 550.0 994.0 GasA ... Y SBrkr 1216 639 0 1855 0.0 0.0 2 0 4 1 TA 7 Typ 0 NaN Attchd 1954.0 Unf 1.0 325.0 TA TA Y 182 0 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal 136900.0
111 112 80 RL NaN 7750 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam SLvl 7 5 2000 2000 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No GLQ 250.0 Unf 0.0 134.0 384.0 GasA ... Y SBrkr 774 656 0 1430 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA BuiltIn 2000.0 Fin 2.0 400.0 TA TA Y 180 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 180000.0
112 113 60 RL 77.0 9965 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 220.0 Gd TA PConc Ex TA Av GLQ 984.0 Unf 0.0 280.0 1264.0 GasA ... Y SBrkr 1282 1414 0 2696 1.0 0.0 2 1 4 1 Ex 10 Typ 1 Gd BuiltIn 2007.0 Fin 3.0 792.0 TA TA Y 120 184 0 0 168 0 NaN NaN NaN 0 10 2007 New Partial 383970.0
113 114 20 RL NaN 21000 Pave NaN Reg Bnk AllPub Corner Gtl Crawfor Norm Norm 1Fam 1Story 6 5 1953 1953 Hip CompShg Wd Sdng Wd Sdng BrkFace 184.0 TA Gd CBlock Gd TA Mn ALQ 35.0 Rec 869.0 905.0 1809.0 GasA ... Y SBrkr 2259 0 0 2259 1.0 0.0 2 0 3 1 Gd 7 Typ 2 Gd Basment 1953.0 Unf 2.0 450.0 TA TA Y 166 120 192 0 0 0 NaN MnPrv NaN 0 10 2007 COD Abnorml 217000.0
114 115 70 RL 61.0 7259 Pave NaN IR1 Lvl AllPub Inside Mod Crawfor Norm Norm 1Fam 2Story 6 8 1945 2002 Gambrel CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No ALQ 774.0 LwQ 150.0 104.0 1028.0 GasA ... Y SBrkr 1436 884 0 2320 1.0 0.0 2 1 3 1 Gd 9 Typ 1 TA Detchd 1945.0 Unf 1.0 180.0 TA TA Y 224 0 0 0 0 0 NaN MnPrv NaN 0 7 2007 WD Normal 259500.0
115 116 160 FV 34.0 3230 Pave Pave Reg Lvl AllPub Corner Gtl Somerst Norm Norm TwnhsE 2Story 6 5 1999 1999 Gable CompShg MetalSd MetalSd BrkFace 1129.0 TA TA PConc Gd TA No GLQ 419.0 Unf 0.0 310.0 729.0 GasA ... Y SBrkr 729 729 0 1458 0.0 0.0 2 1 2 1 TA 5 Typ 1 Fa Detchd 1999.0 Unf 2.0 440.0 TA TA Y 0 32 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 176000.0
116 117 20 RL NaN 11616 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1962 1962 Gable CompShg Wd Sdng Wd Sdng BrkFace 116.0 TA TA CBlock TA TA No LwQ 170.0 BLQ 670.0 252.0 1092.0 GasA ... Y SBrkr 1092 0 0 1092 0.0 1.0 1 0 3 1 TA 6 Typ 1 Po Attchd 1962.0 Unf 1.0 288.0 TA TA Y 0 20 144 0 0 0 NaN NaN NaN 0 9 2009 WD Normal 139000.0
117 118 20 RL 74.0 8536 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 1Story 5 5 2006 2007 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1125.0 1125.0 GasA ... Y SBrkr 1125 0 0 1125 0.0 0.0 1 1 2 1 TA 5 Typ 0 NaN Attchd 2007.0 Unf 2.0 430.0 TA TA Y 80 64 0 0 0 0 NaN NaN NaN 0 4 2007 New Partial 155000.0
118 119 60 RL 90.0 12376 Pave NaN Reg Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam 2Story 7 5 1990 1990 Hip CompShg Plywood Plywood None 0.0 TA TA PConc Gd TA Mn GLQ 1470.0 Unf 0.0 203.0 1673.0 GasA ... Y SBrkr 1699 1523 0 3222 1.0 0.0 3 0 5 1 Gd 11 Typ 2 TA Attchd 1990.0 Unf 3.0 594.0 TA TA Y 367 0 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 320000.0
119 120 60 RL 65.0 8461 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 6 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 728.0 728.0 GasA ... Y SBrkr 728 728 0 1456 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2005.0 Fin 2.0 390.0 TA TA Y 0 24 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial 163990.0
120 121 80 RL NaN 21453 Pave NaN IR1 Low AllPub CulDSac Sev ClearCr Norm Norm 1Fam SLvl 6 5 1969 1969 Flat Metal Plywood Plywood None 0.0 TA TA CBlock TA TA Gd ALQ 938.0 Unf 0.0 0.0 938.0 GasA ... Y SBrkr 988 0 0 988 1.0 0.0 1 0 1 1 TA 4 Typ 2 TA Attchd 1969.0 Unf 2.0 540.0 TA TA Y 0 130 0 130 0 0 NaN NaN NaN 0 10 2006 WD Normal 180000.0
121 122 50 RM 50.0 6060 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 4 5 1939 1950 Gable CompShg AsbShng AsbShng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 732.0 732.0 GasA ... Y SBrkr 772 351 0 1123 0.0 0.0 1 0 3 1 TA 4 Typ 0 NaN Detchd 1979.0 Unf 1.0 264.0 TA TA P 0 0 140 0 0 0 NaN MnPrv NaN 0 6 2007 WD Normal 100000.0
122 123 20 RL 75.0 9464 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 7 1958 1958 Hip CompShg MetalSd MetalSd BrkFace 135.0 TA Gd CBlock TA TA No BLQ 570.0 Unf 0.0 510.0 1080.0 GasA ... Y SBrkr 1080 0 0 1080 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1958.0 Unf 1.0 288.0 TA TA Y 0 0 0 0 130 0 NaN NaN NaN 0 6 2008 WD Normal 136000.0
123 124 120 RL 55.0 7892 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm TwnhsE 1Story 6 5 1993 1993 Gable CompShg Plywood Plywood None 0.0 Gd TA PConc Gd TA No GLQ 300.0 Unf 0.0 899.0 1199.0 GasA ... Y SBrkr 1199 0 0 1199 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 1993.0 RFn 2.0 530.0 TA TA Y 0 63 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal 153900.0
124 125 20 RL 48.0 17043 Pave NaN IR1 Lvl AllPub CulDSac Gtl NWAmes Norm Norm 1Fam 1Story 6 5 1979 1998 Gable CompShg HdBoard HdBoard None 0.0 TA Gd CBlock Gd Fa No Unf 0.0 Unf 0.0 1362.0 1362.0 GasA ... Y SBrkr 1586 0 0 1586 0.0 0.0 2 0 3 1 TA 7 Typ 1 TA Attchd 1979.0 Unf 2.0 435.0 TA TA Y 192 0 0 0 0 0 NaN NaN NaN 0 1 2009 WD Normal 181000.0
125 126 190 RM 60.0 6780 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 2fmCon 1.5Fin 6 8 1935 1982 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Fa CBlock TA TA Av GLQ 490.0 Unf 0.0 30.0 520.0 GasA ... N SBrkr 520 0 234 754 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 53 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 84500.0
126 127 120 RL NaN 4928 Pave NaN IR1 Lvl AllPub Inside Gtl NPkVill Norm Norm TwnhsE 1Story 6 5 1976 1976 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA No ALQ 120.0 Unf 0.0 958.0 1078.0 GasA ... Y SBrkr 958 0 0 958 0.0 0.0 2 0 2 1 TA 5 Typ 1 TA Attchd 1977.0 RFn 2.0 440.0 TA TA Y 0 205 0 0 0 0 NaN NaN NaN 0 2 2007 WD Normal 128000.0
127 128 45 RM 55.0 4388 Pave NaN IR1 Bnk AllPub Inside Gtl OldTown Feedr Norm 1Fam 1.5Unf 5 7 1930 1950 Gable CompShg WdShing Wd Sdng None 0.0 TA Gd BrkTil TA TA No LwQ 116.0 Unf 0.0 556.0 672.0 GasA ... Y SBrkr 840 0 0 840 0.0 0.0 1 0 3 1 TA 5 Typ 1 TA NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 87000.0
128 129 60 RL 69.0 7590 Pave NaN Reg Lvl AllPub Inside Gtl NAmes PosN Norm 1Fam 2Story 6 5 1966 1966 Gable CompShg VinylSd VinylSd BrkFace 266.0 TA TA CBlock TA TA No BLQ 512.0 Unf 0.0 148.0 660.0 GasA ... Y SBrkr 660 688 0 1348 0.0 0.0 1 1 3 1 TA 6 Typ 1 Fa Attchd 1966.0 RFn 2.0 453.0 TA TA Y 188 108 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 155000.0
129 130 20 RL 69.0 8973 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1958 1991 Gable CompShg Plywood Plywood BrkFace 85.0 TA TA CBlock TA TA No Rec 567.0 BLQ 28.0 413.0 1008.0 GasA ... Y FuseA 1053 0 0 1053 0.0 1.0 1 1 3 1 Ex 6 Typ 0 NaN 2Types 1998.0 RFn 2.0 750.0 TA TA Y 0 80 0 180 0 0 NaN MnWw NaN 0 7 2006 WD Abnorml 150000.0
130 131 60 RL 88.0 14200 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 2Story 7 6 1966 1966 Gable CompShg MetalSd MetalSd BrkFace 309.0 TA TA CBlock TA TA No Rec 445.0 Unf 0.0 479.0 924.0 GasA ... Y SBrkr 1216 941 0 2157 0.0 0.0 2 1 4 1 Gd 8 Typ 2 Gd Attchd 1966.0 Fin 2.0 487.0 TA TA Y 105 66 0 0 0 0 NaN GdPrv NaN 0 5 2006 WD Normal 226000.0
131 132 60 RL NaN 12224 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2000 2000 Gable CompShg VinylSd VinylSd BrkFace 40.0 Gd TA PConc Gd TA No GLQ 695.0 Unf 0.0 297.0 992.0 GasA ... Y SBrkr 1022 1032 0 2054 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA BuiltIn 2000.0 RFn 2.0 390.0 TA TA Y 24 48 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 244000.0
132 133 20 RL 75.0 7388 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 6 1959 2002 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 405.0 Unf 0.0 658.0 1063.0 GasA ... Y SBrkr 1327 0 0 1327 1.0 0.0 1 0 3 1 Gd 7 Typ 0 NaN Detchd 1974.0 Unf 2.0 624.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 150750.0
133 134 20 RL NaN 6853 Pave NaN IR1 Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2001 2002 Gable CompShg VinylSd VinylSd BrkFace 136.0 Gd TA PConc Ex TA No GLQ 1005.0 Unf 0.0 262.0 1267.0 GasA ... Y SBrkr 1296 0 0 1296 1.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 2001.0 Fin 2.0 471.0 TA TA Y 192 25 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 220000.0
134 135 20 RL 78.0 10335 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 6 1968 1993 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No Rec 570.0 Unf 0.0 891.0 1461.0 GasA ... Y SBrkr 1721 0 0 1721 0.0 0.0 2 1 3 1 TA 7 Min1 1 TA Attchd 1968.0 RFn 2.0 440.0 TA TA Y 0 96 180 0 0 0 NaN MnPrv NaN 0 7 2006 WD Normal 180000.0
135 136 20 RL 80.0 10400 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 7 6 1970 1970 Hip CompShg Plywood Plywood BrkFace 288.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 1304.0 1304.0 GasA ... Y SBrkr 1682 0 0 1682 0.0 0.0 2 0 3 1 TA 7 Typ 1 Gd Attchd 1970.0 Unf 2.0 530.0 TA TA Y 98 0 0 0 0 0 NaN MnPrv NaN 0 5 2008 WD Normal 174000.0
136 137 20 RL NaN 10355 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 5 1967 1967 Gable CompShg MetalSd MetalSd BrkFace 196.0 TA TA CBlock TA TA No BLQ 695.0 Unf 0.0 519.0 1214.0 GasA ... Y SBrkr 1214 0 0 1214 0.0 0.0 2 0 3 1 TA 5 Typ 1 Fa Attchd 1967.0 RFn 1.0 318.0 TA TA Y 0 111 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 143000.0
137 138 90 RL 82.0 11070 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm Duplex 1Story 7 5 1988 1989 Gable CompShg VinylSd VinylSd BrkFace 70.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1907.0 1907.0 GasA ... Y SBrkr 1959 0 0 1959 0.0 0.0 3 0 5 2 TA 9 Typ 0 NaN 2Types 1989.0 Unf 3.0 766.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Family 171000.0
138 139 60 RL 73.0 9066 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 8 5 1999 2000 Gable CompShg VinylSd VinylSd BrkFace 320.0 Gd TA PConc Gd TA Mn GLQ 668.0 Unf 0.0 336.0 1004.0 GasA ... Y SBrkr 1004 848 0 1852 0.0 0.0 2 1 3 1 Gd 7 Typ 2 TA Attchd 1999.0 Fin 3.0 660.0 TA TA Y 224 106 0 0 0 0 NaN GdPrv NaN 0 12 2008 WD Normal 230000.0
139 140 60 RL 65.0 15426 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 6 5 1997 1997 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No GLQ 821.0 Unf 0.0 107.0 928.0 GasA ... Y SBrkr 928 836 0 1764 1.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1997.0 RFn 2.0 470.0 TA TA Y 276 99 0 0 0 0 NaN MnPrv NaN 0 8 2009 WD Normal 231500.0
140 141 20 RL 70.0 10500 Pave NaN Reg Lvl AllPub FR2 Gtl NAmes Norm Norm 1Fam 1Story 4 5 1971 1971 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No ALQ 432.0 Unf 0.0 432.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 3 1 TA 5 Typ 1 Po NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2010 ConLI Normal 115000.0
141 142 20 RL 78.0 11645 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 1300.0 Unf 0.0 434.0 1734.0 GasA ... Y SBrkr 1734 0 0 1734 1.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2005.0 Fin 2.0 660.0 TA TA Y 160 24 0 0 0 0 NaN NaN NaN 0 1 2006 WD Normal 260000.0
142 143 50 RL 71.0 8520 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Artery Norm 1Fam 1.5Fin 5 4 1952 1952 Gable CompShg BrkFace Wd Sdng None 0.0 TA Fa CBlock TA TA No Rec 507.0 Unf 0.0 403.0 910.0 GasA ... Y SBrkr 910 475 0 1385 0.0 0.0 2 0 4 1 TA 6 Typ 0 NaN Detchd 2000.0 Unf 2.0 720.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 6 2010 WD Normal 166000.0
143 144 20 RL 78.0 10335 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 1999 1999 Gable CompShg VinylSd VinylSd BrkFace 183.0 Gd TA PConc Gd TA Gd GLQ 679.0 Unf 0.0 811.0 1490.0 GasA ... Y SBrkr 1501 0 0 1501 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1999.0 RFn 2.0 577.0 TA TA Y 144 29 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 204000.0
144 145 90 RM 70.0 9100 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer RRAe Norm Duplex 1Story 5 5 1963 1963 Gable CompShg HdBoard HdBoard BrkFace 336.0 TA TA CBlock TA TA No Rec 1332.0 Unf 0.0 396.0 1728.0 GasA ... Y SBrkr 1728 0 0 1728 1.0 0.0 2 0 6 2 TA 10 Typ 0 NaN Detchd 1963.0 Unf 2.0 504.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2006 ConLI Abnorml 125000.0
145 146 160 RM 24.0 2522 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm Twnhs 2Story 6 5 2004 2006 Gable CompShg VinylSd VinylSd Stone 50.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 970.0 970.0 GasA ... Y SBrkr 970 739 0 1709 0.0 0.0 2 0 3 1 Gd 7 Maj1 0 NaN Detchd 2004.0 Unf 2.0 380.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 130000.0
146 147 30 RM 51.0 6120 Pave NaN Reg Lvl AllPub Corner Gtl BrkSide Norm Norm 1Fam 1Story 5 7 1931 1993 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No BLQ 209.0 Unf 0.0 506.0 715.0 GasA ... Y FuseA 875 0 0 875 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1931.0 Unf 1.0 180.0 Fa TA Y 48 0 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal 105000.0
147 148 60 RL NaN 9505 Pave NaN IR1 Lvl AllPub CulDSac Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2001 2001 Gable CompShg VinylSd VinylSd BrkFace 180.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 884.0 884.0 GasA ... Y SBrkr 884 1151 0 2035 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd BuiltIn 2001.0 Fin 2.0 434.0 TA TA Y 144 48 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 222500.0
148 149 20 RL 63.0 7500 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 7 5 2004 2005 Gable CompShg VinylSd VinylSd BrkFace 120.0 TA TA PConc Gd TA No GLQ 680.0 Unf 0.0 400.0 1080.0 GasA ... Y SBrkr 1080 0 0 1080 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal 141000.0
149 150 50 RM NaN 6240 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 4 1936 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil Gd TA No Unf 0.0 Unf 0.0 896.0 896.0 GasA ... Y FuseA 896 448 0 1344 0.0 0.0 1 0 3 1 TA 7 Typ 0 NaN Detchd 1936.0 Unf 1.0 240.0 Fa TA Y 200 114 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 115000.0
150 151 20 RL 120.0 10356 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 5 6 1975 1975 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA Av BLQ 716.0 Unf 0.0 253.0 969.0 GasA ... Y SBrkr 969 0 0 969 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Attchd 1975.0 Unf 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 1 2007 WD Normal 122000.0
151 152 20 RL 107.0 13891 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2007 2008 Hip CompShg VinylSd VinylSd Stone 436.0 Gd TA PConc Ex TA Gd GLQ 1400.0 Unf 0.0 310.0 1710.0 GasA ... Y SBrkr 1710 0 0 1710 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2007.0 RFn 3.0 866.0 TA TA Y 0 102 0 0 0 0 NaN NaN NaN 0 1 2008 New Partial 372402.0
152 153 60 RL NaN 14803 Pave NaN IR1 Lvl AllPub CulDSac Gtl NWAmes Norm Norm 1Fam 2Story 6 5 1971 1971 Gable CompShg HdBoard HdBoard BrkFace 252.0 TA TA CBlock TA TA No Rec 416.0 Unf 0.0 409.0 825.0 GasA ... Y SBrkr 1097 896 0 1993 0.0 0.0 2 1 4 1 TA 8 Typ 1 Gd Attchd 1971.0 RFn 2.0 495.0 TA TA Y 0 66 0 0 0 0 NaN GdWo NaN 0 6 2006 WD Normal 190000.0
153 154 20 RL NaN 13500 Pave NaN Reg Lvl AllPub Inside Gtl ClearCr Norm Norm 1Fam 1Story 6 7 1960 1975 Flat CompShg BrkFace Plywood None 0.0 TA TA CBlock Gd TA Gd BLQ 429.0 ALQ 1080.0 93.0 1602.0 GasA ... Y SBrkr 1252 0 0 1252 1.0 0.0 1 0 1 1 TA 4 Typ 1 Gd Attchd 1960.0 RFn 2.0 564.0 TA TA Y 409 0 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal 235000.0
154 155 30 RM 84.0 11340 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1Story 6 5 1923 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 1200.0 1200.0 GasA ... Y FuseA 1200 0 0 1200 0.0 0.0 1 0 4 1 TA 7 Typ 0 NaN Detchd 1923.0 Unf 1.0 312.0 Fa Fa Y 0 0 228 0 0 0 NaN NaN NaN 0 3 2006 WD Family 125000.0
155 156 50 RL 60.0 9600 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Artery Norm 1Fam 1.5Fin 6 5 1924 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 572.0 572.0 Grav ... N FuseF 572 524 0 1096 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 8 128 0 0 0 NaN NaN NaN 0 4 2008 WD Normal 79000.0
156 157 20 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1950 1950 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y FuseF 1040 0 0 1040 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1950.0 Unf 2.0 625.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 109500.0
157 158 60 RL 92.0 12003 Pave NaN Reg Lvl AllPub Corner Gtl Timber Norm Norm 1Fam 2Story 8 5 2009 2010 Gable CompShg VinylSd VinylSd BrkFace 84.0 Gd TA PConc Ex TA No Unf 0.0 Unf 0.0 774.0 774.0 GasA ... Y SBrkr 774 1194 0 1968 0.0 0.0 2 1 4 1 Ex 8 Typ 1 Gd BuiltIn 2009.0 Fin 3.0 680.0 TA TA Y 0 75 0 0 0 0 NaN NaN NaN 0 5 2010 New Partial 269500.0
158 159 60 FV 100.0 12552 Pave NaN Reg Lvl AllPub Corner Gtl Somerst Norm Norm 1Fam 2Story 7 5 2004 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 222.0 Unf 0.0 769.0 991.0 GasA ... Y SBrkr 991 956 0 1947 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2004.0 RFn 2.0 678.0 TA TA Y 0 136 0 0 0 0 NaN GdWo NaN 0 5 2010 WD Normal 254900.0
159 160 60 RL 134.0 19378 Pave NaN IR1 HLS AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 456.0 Gd TA PConc Gd TA Mn GLQ 57.0 Unf 0.0 1335.0 1392.0 GasA ... Y SBrkr 1392 1070 0 2462 1.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd Attchd 2006.0 RFn 2.0 576.0 TA TA Y 239 132 0 168 0 0 NaN NaN NaN 0 3 2006 New Partial 320000.0
160 161 20 RL NaN 11120 Pave NaN IR1 Lvl AllPub CulDSac Gtl Veenker Norm Norm 1Fam 1Story 6 6 1984 1984 Gable CompShg Plywood Plywood None 0.0 TA TA PConc Gd TA No BLQ 660.0 Unf 0.0 572.0 1232.0 GasA ... Y SBrkr 1232 0 0 1232 0.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Attchd 1984.0 Unf 2.0 516.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 162500.0
161 162 60 RL 110.0 13688 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2003 2004 Gable CompShg VinylSd VinylSd BrkFace 664.0 Gd TA PConc Ex TA Av GLQ 1016.0 Unf 0.0 556.0 1572.0 GasA ... Y SBrkr 1572 1096 0 2668 1.0 0.0 2 1 3 1 Ex 10 Typ 2 Gd BuiltIn 2003.0 Fin 3.0 726.0 TA TA Y 400 0 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal 412500.0
162 163 20 RL 95.0 12182 Pave NaN Reg Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 1Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd BrkFace 226.0 Gd TA PConc Gd TA Mn BLQ 1201.0 Unf 0.0 340.0 1541.0 GasA ... Y SBrkr 1541 0 0 1541 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2005.0 RFn 2.0 532.0 TA TA Y 0 70 0 0 0 0 NaN NaN NaN 0 5 2010 New Partial 220000.0
163 164 45 RL 55.0 5500 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Unf 4 6 1956 1956 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 882.0 882.0 GasA ... Y SBrkr 882 0 0 882 0.0 0.0 1 0 1 1 TA 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN MnPrv NaN 0 4 2007 WD Normal 103200.0
164 165 40 RM 40.0 5400 Pave Pave Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1Story 6 7 1926 2004 Gable CompShg MetalSd MetalSd None 0.0 TA Gd BrkTil TA TA Mn LwQ 370.0 Unf 0.0 779.0 1149.0 GasA ... Y FuseA 1149 467 0 1616 0.0 0.0 2 0 3 1 Gd 5 Typ 0 NaN Detchd 1926.0 Unf 1.0 216.0 TA TA Y 0 0 183 0 0 0 NaN NaN NaN 0 10 2007 WD Normal 152000.0
165 166 190 RL 62.0 10106 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 2fmCon 1.5Fin 5 7 1940 1999 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd BrkTil TA TA No ALQ 351.0 Rec 181.0 112.0 644.0 GasA ... Y SBrkr 808 547 0 1355 1.0 0.0 2 0 4 2 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 140 0 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal 127500.0
166 167 20 RL NaN 10708 Pave NaN IR1 Lvl AllPub Inside Gtl ClearCr Norm Norm 1Fam 1Story 5 5 1955 1993 Hip CompShg Wd Sdng Wd Sdng None 0.0 Gd TA CBlock TA TA No LwQ 379.0 BLQ 768.0 470.0 1617.0 GasA ... Y FuseA 1867 0 0 1867 1.0 0.0 1 0 2 1 TA 7 Typ 3 Gd Attchd 1955.0 Fin 1.0 303.0 TA TA Y 476 0 0 0 142 0 NaN GdWo NaN 0 11 2009 COD Normal 190000.0
167 168 60 RL 86.0 10562 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 300.0 Gd TA PConc Ex TA No GLQ 1288.0 Unf 0.0 294.0 1582.0 GasA ... Y SBrkr 1610 551 0 2161 1.0 0.0 1 1 3 1 Ex 8 Typ 1 Gd Attchd 2007.0 Fin 3.0 789.0 TA TA Y 178 120 0 0 0 0 NaN NaN NaN 0 11 2007 New Partial 325624.0
168 169 60 RL 62.0 8244 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 840.0 840.0 GasA ... Y SBrkr 840 880 0 1720 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2004.0 Fin 2.0 440.0 TA TA Y 100 48 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 183500.0
169 170 20 RL NaN 16669 Pave NaN IR1 Lvl AllPub Corner Gtl Timber Norm Norm 1Fam 1Story 8 6 1981 1981 Hip WdShake Plywood Plywood BrkFace 653.0 Gd TA CBlock Gd TA No Unf 0.0 Unf 0.0 1686.0 1686.0 GasA ... Y SBrkr 1707 0 0 1707 0.0 0.0 2 1 2 1 TA 6 Typ 1 TA Attchd 1981.0 RFn 2.0 511.0 TA TA Y 574 64 0 0 0 0 NaN NaN NaN 0 1 2006 WD Normal 228000.0
170 171 50 RM NaN 12358 Pave NaN IR1 Lvl AllPub Inside Gtl OldTown Feedr Norm 1Fam 1.5Fin 5 6 1941 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 360.0 Unf 0.0 360.0 720.0 GasA ... Y SBrkr 854 0 528 1382 0.0 0.0 1 1 2 1 TA 7 Typ 0 NaN Detchd 1991.0 Unf 2.0 660.0 TA TA Y 237 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 128500.0
171 172 20 RL 141.0 31770 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 5 1960 1960 Hip CompShg BrkFace Plywood Stone 112.0 TA TA CBlock TA Gd Gd BLQ 639.0 Unf 0.0 441.0 1080.0 GasA ... Y SBrkr 1656 0 0 1656 1.0 0.0 1 0 3 1 TA 7 Typ 2 Gd Attchd 1960.0 Fin 2.0 528.0 TA TA P 210 62 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 215000.0
172 173 160 RL 44.0 5306 Pave NaN IR1 Lvl AllPub Inside Gtl StoneBr Norm Norm TwnhsE 2Story 7 7 1987 1987 Gable CompShg HdBoard HdBoard None 0.0 Gd Gd PConc Gd Gd No GLQ 495.0 Rec 215.0 354.0 1064.0 GasA ... Y SBrkr 1064 703 0 1767 1.0 0.0 2 0 2 1 Gd 5 Typ 1 TA Attchd 1987.0 RFn 2.0 504.0 Gd TA Y 441 35 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 239000.0
173 174 20 RL 80.0 10197 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1961 1961 Gable CompShg WdShing Wd Shng BrkCmn 491.0 TA TA CBlock TA TA No ALQ 288.0 Rec 374.0 700.0 1362.0 GasA ... Y SBrkr 1362 0 0 1362 1.0 0.0 1 1 3 1 TA 6 Typ 1 TA Attchd 1961.0 Unf 2.0 504.0 TA TA Y 0 20 0 0 0 0 NaN NaN NaN 0 6 2008 COD Normal 163000.0
174 175 20 RL 47.0 12416 Pave NaN IR1 Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 6 5 1986 1986 Gable CompShg VinylSd Plywood Stone 132.0 TA TA CBlock Gd Fa No ALQ 1398.0 LwQ 208.0 0.0 1606.0 GasA ... Y SBrkr 1651 0 0 1651 1.0 0.0 2 0 3 1 TA 7 Min2 1 TA Attchd 1986.0 Fin 2.0 616.0 TA TA Y 192 0 0 0 0 0 NaN NaN NaN 0 11 2008 WD Normal 184000.0
175 176 20 RL 84.0 12615 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 1Story 6 7 1950 2001 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA Gd Av ALQ 477.0 Unf 0.0 725.0 1202.0 GasA ... Y SBrkr 2158 0 0 2158 1.0 0.0 2 0 4 1 Gd 7 Typ 1 Gd Attchd 1950.0 Unf 2.0 576.0 TA TA Y 0 29 39 0 0 0 NaN MnPrv NaN 0 6 2007 WD Normal 243000.0
176 177 60 RL 97.0 10029 Pave NaN IR1 Lvl AllPub Corner Gtl ClearCr Norm Norm 1Fam 2Story 6 5 1988 1989 Gable CompShg Plywood Plywood BrkFace 268.0 Gd TA PConc Gd TA No GLQ 831.0 Unf 0.0 320.0 1151.0 GasA ... Y SBrkr 1164 896 0 2060 0.0 1.0 2 1 4 1 TA 8 Typ 1 TA Attchd 1988.0 Unf 2.0 521.0 TA TA Y 0 228 0 0 192 0 NaN NaN NaN 0 9 2007 WD Normal 211000.0
177 178 50 RL NaN 13650 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1.5Fin 5 5 1958 1958 Gable CompShg MetalSd MetalSd None 0.0 Gd Gd CBlock TA TA No ALQ 57.0 BLQ 441.0 554.0 1052.0 GasA ... Y SBrkr 1252 668 0 1920 1.0 0.0 2 0 4 1 Gd 8 Typ 1 Gd Attchd 1958.0 Unf 2.0 451.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 172500.0
178 179 20 RL 63.0 17423 Pave NaN IR1 Lvl AllPub CulDSac Gtl StoneBr Norm Norm 1Fam 1Story 9 5 2008 2009 Hip CompShg VinylSd VinylSd Stone 748.0 Ex TA PConc Ex TA No GLQ 1904.0 Unf 0.0 312.0 2216.0 GasA ... Y SBrkr 2234 0 0 2234 1.0 0.0 2 0 1 1 Ex 9 Typ 1 Gd Attchd 2009.0 Fin 3.0 1166.0 TA TA Y 0 60 0 0 0 0 NaN NaN NaN 0 7 2009 New Partial 501837.0
179 180 30 RM 60.0 8520 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 6 1923 2006 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd TA CBlock TA TA No Unf 0.0 Unf 0.0 968.0 968.0 GasA ... Y SBrkr 968 0 0 968 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1935.0 Unf 2.0 480.0 Fa TA N 0 0 184 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 100000.0
180 181 160 FV NaN 2117 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 6 5 2000 2000 Gable CompShg MetalSd MetalSd BrkFace 456.0 Gd TA PConc Gd TA No GLQ 436.0 Unf 0.0 320.0 756.0 GasA ... Y SBrkr 769 756 0 1525 0.0 0.0 2 1 3 1 Gd 5 Typ 1 TA Detchd 2000.0 Unf 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 177000.0
181 182 70 RL 54.0 7588 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 7 6 1920 1950 Gable CompShg Stucco Stucco None 0.0 TA TA BrkTil Fa TA No LwQ 352.0 Unf 0.0 441.0 793.0 GasA ... Y SBrkr 901 901 0 1802 0.0 0.0 1 1 4 1 TA 9 Typ 1 Gd Detchd 1920.0 Unf 1.0 216.0 Fa TA Y 0 0 40 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 200100.0
182 183 20 RL 60.0 9060 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Artery Norm 1Fam 1Story 5 6 1957 2006 Hip CompShg Wd Sdng Wd Sdng BrkFace 98.0 TA TA PConc NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1340 0 0 1340 0.0 0.0 1 0 3 1 TA 7 Typ 1 Gd Attchd 1957.0 RFn 1.0 252.0 TA TA Y 116 0 0 180 0 0 NaN MnPrv NaN 0 6 2007 WD Normal 120000.0
183 184 50 RM 63.0 11426 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1362.0 1362.0 GasA ... Y SBrkr 1362 720 0 2082 0.0 0.0 2 1 3 1 Gd 6 Mod 0 NaN Detchd 2003.0 Unf 2.0 484.0 TA TA N 280 238 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 200000.0
184 185 50 RL 92.0 7438 Pave NaN IR1 Lvl AllPub Inside Gtl BrkSide RRAn Feedr 1Fam 1.5Fin 5 8 1908 1991 Gable CompShg AsbShng Plywood None 0.0 TA TA PConc Fa TA No Unf 0.0 Unf 0.0 504.0 504.0 GasA ... Y SBrkr 936 316 0 1252 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1986.0 Unf 2.0 576.0 TA TA Y 104 0 0 0 0 0 NaN MnPrv NaN 0 6 2006 WD Normal 127000.0
185 186 75 RM 90.0 22950 Pave NaN IR2 Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 2.5Fin 10 9 1892 1993 Gable WdShngl Wd Sdng Wd Sdng None 0.0 Gd Gd BrkTil TA TA Mn Unf 0.0 Unf 0.0 1107.0 1107.0 GasA ... Y SBrkr 1518 1518 572 3608 0.0 0.0 2 1 4 1 Ex 12 Typ 2 TA Detchd 1993.0 Unf 3.0 840.0 Ex TA Y 0 260 0 0 410 0 NaN GdPrv NaN 0 6 2006 WD Normal 475000.0
186 187 80 RL NaN 9947 Pave NaN IR1 Lvl AllPub CulDSac Gtl Mitchel Norm Norm 1Fam SLvl 7 5 1990 1991 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA Av GLQ 611.0 Unf 0.0 577.0 1188.0 GasA ... Y SBrkr 1217 0 0 1217 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1990.0 Unf 2.0 497.0 TA TA Y 168 27 0 0 0 0 NaN GdPrv NaN 0 6 2009 WD Normal 173000.0
187 188 50 RL 60.0 10410 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 7 1916 1987 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Fa TA No Unf 0.0 Unf 0.0 660.0 660.0 GasA ... Y SBrkr 808 704 144 1656 0.0 0.0 2 1 3 1 TA 8 Min2 0 NaN Detchd 1916.0 Unf 1.0 180.0 Fa Fa N 0 0 0 140 0 0 NaN MnPrv NaN 0 8 2009 WD Normal 135000.0
188 189 90 RL 64.0 7018 Pave NaN Reg Bnk AllPub Inside Gtl SawyerW Feedr Norm Duplex SFoyer 5 5 1979 1979 Gable CompShg Plywood Plywood Stone 275.0 TA TA CBlock Gd TA Av GLQ 1086.0 Unf 0.0 0.0 1086.0 GasA ... Y SBrkr 1224 0 0 1224 2.0 0.0 0 2 2 2 TA 6 Typ 2 TA Detchd 1979.0 Unf 2.0 528.0 TA TA Y 120 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Alloca 153337.0
189 190 120 RL 41.0 4923 Pave NaN Reg Lvl AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 2001 2002 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Ex TA Av GLQ 1153.0 Unf 0.0 440.0 1593.0 GasA ... Y SBrkr 1593 0 0 1593 1.0 0.0 1 1 0 1 Ex 5 Typ 1 Gd Attchd 2001.0 Fin 2.0 682.0 TA TA Y 0 120 0 0 224 0 NaN NaN NaN 0 8 2008 WD Normal 286000.0
190 191 70 RL 70.0 10570 Pave NaN Reg Bnk AllPub Inside Mod Crawfor Norm Norm 1Fam 2Story 8 8 1932 1994 Hip CompShg BrkFace BrkFace None 0.0 Gd TA CBlock Gd Gd No Rec 297.0 Unf 0.0 556.0 853.0 GasA ... Y SBrkr 1549 1178 0 2727 0.0 0.0 2 1 3 1 Gd 10 Maj1 2 TA Detchd 1932.0 Unf 2.0 440.0 TA TA Y 0 74 0 0 0 0 NaN NaN NaN 0 12 2007 WD Normal 315000.0
191 192 60 RL NaN 7472 Pave NaN IR1 Lvl AllPub CulDSac Gtl NAmes Norm Norm 1Fam 2Story 7 9 1972 2004 Gable CompShg HdBoard HdBoard BrkFace 138.0 TA TA CBlock TA TA No ALQ 626.0 Unf 0.0 99.0 725.0 GasA ... Y SBrkr 725 754 0 1479 1.0 0.0 1 1 4 1 Gd 7 Typ 0 NaN Attchd 1972.0 Fin 2.0 484.0 TA TA Y 0 32 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 184000.0
192 193 20 RL 68.0 9017 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 1999 1999 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 560.0 Unf 0.0 871.0 1431.0 GasA ... Y SBrkr 1431 0 0 1431 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1999.0 Fin 2.0 666.0 TA TA Y 0 35 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal 192000.0
193 194 160 RM 24.0 2522 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm Twnhs 2Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd Stone 50.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 970.0 970.0 GasA ... Y SBrkr 970 739 0 1709 0.0 0.0 2 0 3 1 Gd 7 Maj1 0 NaN Detchd 2004.0 Unf 2.0 380.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 130000.0
194 195 20 RL 60.0 7180 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 7 1972 1972 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA Av ALQ 390.0 Unf 0.0 474.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1989.0 Unf 1.0 352.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 127000.0
195 196 160 RL 24.0 2280 Pave NaN Reg Lvl AllPub FR2 Gtl NPkVill Norm Norm Twnhs 2Story 6 6 1976 1976 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock Gd TA No ALQ 566.0 Unf 0.0 289.0 855.0 GasA ... Y SBrkr 855 601 0 1456 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1976.0 Unf 2.0 440.0 TA TA Y 87 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 148500.0
196 197 20 RL 79.0 9416 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2007 2007 Hip CompShg CemntBd CmentBd Stone 205.0 Ex TA PConc Ex TA No GLQ 1126.0 Unf 0.0 600.0 1726.0 GasA ... Y SBrkr 1726 0 0 1726 1.0 0.0 2 0 3 1 Ex 8 Typ 1 Gd Attchd 2007.0 Fin 3.0 786.0 TA TA Y 171 138 0 0 266 0 NaN NaN NaN 0 9 2007 New Partial 311872.0
197 198 75 RL 174.0 25419 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Artery Norm 1Fam 2Story 8 4 1918 1990 Gable CompShg Stucco Stucco None 0.0 Gd Gd PConc TA TA No GLQ 1036.0 LwQ 184.0 140.0 1360.0 GasA ... Y SBrkr 1360 1360 392 3112 1.0 1.0 2 0 4 1 Gd 8 Typ 1 Ex Detchd 1918.0 Unf 2.0 795.0 TA TA Y 0 16 552 0 0 512 Ex GdPrv NaN 0 3 2006 WD Abnorml 235000.0
198 199 75 RM 92.0 5520 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 2.5Fin 6 6 1912 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 755.0 755.0 GasA ... Y SBrkr 929 929 371 2229 0.0 0.0 1 0 5 1 TA 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 198 30 0 0 0 NaN MnPrv NaN 0 7 2009 WD Abnorml 104000.0
199 200 20 RL 76.0 9591 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2004 2005 Hip CompShg VinylSd VinylSd BrkFace 262.0 Gd TA PConc Ex TA Av GLQ 1088.0 Unf 0.0 625.0 1713.0 GasA ... Y SBrkr 1713 0 0 1713 1.0 0.0 2 0 3 1 Ex 7 Typ 1 Gd Attchd 2004.0 Fin 3.0 856.0 TA TA Y 0 26 0 0 170 0 NaN NaN NaN 0 1 2009 WD Normal 274900.0
200 201 20 RM 80.0 8546 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 1Story 4 5 2003 2004 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1121.0 1121.0 GasA ... Y SBrkr 1121 0 0 1121 0.0 0.0 2 0 2 1 TA 5 Typ 0 NaN Attchd 2003.0 RFn 2.0 440.0 TA TA Y 132 64 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal 140000.0
201 202 20 RL 75.0 10125 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 6 6 1977 1977 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No ALQ 641.0 LwQ 279.0 276.0 1196.0 GasA ... Y SBrkr 1279 0 0 1279 0.0 1.0 2 0 3 1 TA 6 Typ 2 Fa Detchd 1980.0 Unf 2.0 473.0 TA TA Y 238 83 0 0 0 0 NaN MnPrv NaN 0 2 2008 WD Normal 171500.0
202 203 50 RL 50.0 7000 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Artery Norm 1Fam 1.5Fin 6 6 1924 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Gd BrkTil Fa TA No LwQ 617.0 Unf 0.0 0.0 617.0 GasA ... Y SBrkr 865 445 0 1310 0.0 0.0 2 0 2 1 TA 6 Min1 0 NaN Attchd 1924.0 Unf 1.0 398.0 TA TA Y 0 0 126 0 0 0 NaN NaN NaN 0 5 2006 COD Normal 112000.0
203 204 120 RM NaN 4438 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm TwnhsE 1Story 6 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 205.0 Gd TA PConc Gd TA Av GLQ 662.0 Unf 0.0 186.0 848.0 GasA ... Y SBrkr 848 0 0 848 1.0 0.0 1 0 1 1 Gd 3 Typ 1 Gd Attchd 2004.0 RFn 2.0 420.0 TA TA Y 149 0 0 0 0 0 NaN NaN NaN 0 1 2008 WD Normal 149000.0
204 205 50 RM 50.0 3500 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 7 1947 1950 Gable CompShg AsbShng AsbShng None 0.0 TA TA CBlock TA TA No LwQ 312.0 Unf 0.0 408.0 720.0 GasA ... Y SBrkr 720 564 0 1284 0.0 0.0 1 1 2 1 TA 5 Typ 0 NaN Detchd 1948.0 Unf 1.0 240.0 TA TA Y 0 35 0 0 0 0 NaN MnWw NaN 0 4 2009 WD Normal 110000.0
205 206 20 RL 99.0 11851 Pave NaN Reg Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 1Story 7 5 1990 1990 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1424.0 1424.0 GasA ... Y SBrkr 1442 0 0 1442 0.0 0.0 2 0 3 1 TA 5 Typ 0 NaN Attchd 1990.0 RFn 2.0 500.0 TA TA Y 0 34 0 508 0 0 NaN NaN NaN 0 5 2009 WD Normal 180500.0
206 207 20 RL 40.0 13673 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer RRAe Norm 1Fam 1Story 5 5 1962 1962 Gable CompShg HdBoard HdBoard None 0.0 TA Gd CBlock TA TA No Unf 0.0 Unf 0.0 1140.0 1140.0 GasA ... Y SBrkr 1696 0 0 1696 0.0 0.0 1 1 3 1 TA 8 Min2 1 TA Attchd 1962.0 RFn 1.0 349.0 TA TA Y 0 30 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal 143900.0
207 208 20 RL NaN 12493 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 4 5 1960 1960 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No ALQ 419.0 Rec 306.0 375.0 1100.0 GasA ... Y SBrkr 1100 0 0 1100 1.0 0.0 1 0 3 1 TA 6 Typ 1 Po Attchd 1960.0 RFn 1.0 312.0 TA TA Y 355 0 0 0 0 0 NaN GdWo NaN 0 4 2008 WD Normal 141000.0
208 209 60 RL NaN 14364 Pave NaN IR1 Low AllPub Inside Mod SawyerW Norm Norm 1Fam 2Story 7 5 1988 1989 Gable CompShg Plywood Plywood BrkFace 128.0 Gd TA CBlock Gd TA Gd GLQ 1065.0 Unf 0.0 92.0 1157.0 GasA ... Y SBrkr 1180 882 0 2062 1.0 0.0 2 1 3 1 TA 7 Typ 1 Gd Attchd 1988.0 Fin 2.0 454.0 TA TA Y 60 55 0 0 154 0 NaN NaN NaN 0 4 2007 WD Normal 277000.0
209 210 20 RL 75.0 8250 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 7 1964 1964 Hip CompShg HdBoard HdBoard Stone 260.0 TA TA CBlock Gd TA No Rec 787.0 Unf 0.0 305.0 1092.0 GasA ... Y SBrkr 1092 0 0 1092 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1964.0 RFn 2.0 504.0 TA Gd Y 0 0 0 0 0 0 NaN MnPrv NaN 0 7 2008 WD Normal 145000.0
210 211 30 RL 67.0 5604 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 6 1925 1950 Gable CompShg Stucco Stucco None 0.0 TA TA CBlock TA TA No Rec 468.0 Unf 0.0 396.0 864.0 GasA ... N FuseA 864 0 0 864 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 96 0 0 0 NaN NaN NaN 0 4 2008 WD Normal 98000.0
211 212 20 RL 83.0 10420 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 1Story 6 5 2009 2009 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Mn GLQ 36.0 Unf 0.0 1176.0 1212.0 GasA ... Y SBrkr 1212 0 0 1212 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2009.0 RFn 2.0 460.0 TA TA Y 100 22 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal 186000.0
212 213 60 FV 72.0 8640 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 2009 2009 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No GLQ 822.0 Unf 0.0 78.0 900.0 GasA ... Y SBrkr 932 920 0 1852 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 2009.0 RFn 2.0 644.0 TA TA Y 168 108 0 0 0 0 NaN NaN NaN 0 7 2009 New Partial 252678.0
213 214 20 RL 43.0 13568 Pave NaN IR2 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 1Story 5 5 1995 1995 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No ALQ 716.0 Unf 0.0 274.0 990.0 GasA ... Y SBrkr 990 0 0 990 0.0 1.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1996.0 Unf 2.0 576.0 TA TA Y 224 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 156000.0
214 215 60 RL NaN 10900 Pave NaN IR1 Lvl AllPub FR2 Gtl CollgCr Norm Norm 1Fam 2Story 6 7 1977 1977 Gable CompShg HdBoard HdBoard BrkFace 153.0 TA TA CBlock Gd TA No GLQ 378.0 Unf 0.0 311.0 689.0 GasA ... Y SBrkr 689 703 0 1392 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1977.0 Fin 1.0 299.0 TA TA Y 0 36 0 0 0 0 NaN MnPrv Shed 450 3 2010 WD Normal 161750.0
215 216 20 RL 72.0 10011 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1957 1996 Gable CompShg HdBoard HdBoard BrkFace 64.0 TA TA CBlock TA TA No BLQ 360.0 Unf 0.0 710.0 1070.0 GasA ... Y SBrkr 1236 0 0 1236 0.0 1.0 1 0 2 1 Gd 6 Min1 1 Fa Attchd 1957.0 Unf 1.0 447.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 5 2006 WD Normal 134450.0
216 217 20 RL 65.0 8450 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 266.0 Gd TA PConc Gd TA Mn GLQ 946.0 Unf 0.0 490.0 1436.0 GasA ... Y SBrkr 1436 0 0 1436 1.0 0.0 2 0 3 1 Gd 8 Typ 0 NaN Attchd 2004.0 Unf 2.0 484.0 TA TA Y 139 98 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal 210000.0
217 218 70 RM 57.0 9906 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 4 4 1925 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 686.0 686.0 GasA ... N SBrkr 810 518 0 1328 0.0 0.0 1 0 3 1 TA 8 Typ 0 NaN Detchd 1940.0 Unf 1.0 210.0 TA TA Y 0 172 60 0 0 0 NaN NaN NaN 0 9 2006 WD Family 107000.0
218 219 50 RL NaN 15660 Pave NaN IR1 Lvl AllPub Corner Gtl Crawfor Norm Norm 1Fam 1.5Fin 7 9 1939 2006 Gable CompShg VinylSd VinylSd BrkFace 312.0 Gd Gd CBlock TA TA No BLQ 341.0 Unf 0.0 457.0 798.0 GasA ... Y SBrkr 1137 817 0 1954 0.0 1.0 1 1 3 1 Gd 8 Typ 2 TA Attchd 1939.0 Unf 2.0 431.0 TA TA Y 0 119 150 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 311500.0
219 220 120 RL 43.0 3010 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 16.0 Gd TA PConc Gd TA Av GLQ 16.0 Unf 0.0 1232.0 1248.0 GasA ... Y SBrkr 1248 0 0 1248 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 2005.0 Fin 2.0 438.0 TA TA Y 108 0 0 0 0 0 NaN NaN NaN 0 3 2006 New Partial 167240.0
220 221 20 RL 73.0 8990 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Mn Unf 0.0 Unf 0.0 1498.0 1498.0 GasA ... Y SBrkr 1498 0 0 1498 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 2006.0 RFn 2.0 675.0 TA TA Y 351 33 0 0 0 0 NaN NaN NaN 0 4 2006 New Partial 204900.0
221 222 60 RL NaN 8068 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2002 2002 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1010.0 1010.0 GasA ... Y SBrkr 1010 1257 0 2267 0.0 0.0 2 1 4 1 Gd 8 Typ 1 TA BuiltIn 2002.0 RFn 2.0 390.0 TA TA Y 120 46 0 0 0 0 NaN NaN NaN 0 12 2009 ConLI Normal 200000.0
222 223 60 RL 85.0 11475 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes RRAn Norm 1Fam 2Story 6 6 1975 1975 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock Gd TA No ALQ 550.0 Unf 0.0 163.0 713.0 GasA ... Y SBrkr 811 741 0 1552 1.0 0.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1975.0 RFn 2.0 434.0 TA TA Y 209 208 0 0 0 0 NaN MnPrv NaN 0 2 2006 WD Normal 179900.0
223 224 20 RL 70.0 10500 Pave NaN Reg Lvl AllPub FR2 Gtl NAmes Norm Norm 1Fam 1Story 4 6 1971 1971 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No ALQ 524.0 LwQ 180.0 160.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1989.0 Unf 2.0 576.0 TA TA Y 216 0 0 0 0 0 NaN NaN NaN 0 3 2009 WD Abnorml 97000.0
224 225 20 RL 103.0 13472 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 10 5 2003 2003 Hip CompShg VinylSd VinylSd BrkFace 922.0 Ex TA PConc Ex TA Gd GLQ 56.0 Unf 0.0 2336.0 2392.0 GasA ... Y SBrkr 2392 0 0 2392 0.0 0.0 2 0 3 1 Ex 8 Typ 1 Ex Attchd 2003.0 Fin 3.0 968.0 TA TA Y 248 105 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 386250.0
225 226 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 5 5 1971 1971 Gable CompShg HdBoard HdBoard BrkFace 142.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 630.0 630.0 GasA ... Y SBrkr 630 672 0 1302 0.0 0.0 2 1 3 1 TA 6 Typ 0 NaN Detchd 1991.0 Unf 1.0 280.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2009 COD Abnorml 112000.0
226 227 60 RL 82.0 9950 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 7 5 1995 1995 Gable CompShg VinylSd VinylSd BrkFace 290.0 Gd TA PConc Gd TA No GLQ 565.0 Unf 0.0 638.0 1203.0 GasA ... Y SBrkr 1214 1306 0 2520 0.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1995.0 RFn 3.0 721.0 TA TA Y 224 114 0 0 0 0 NaN NaN NaN 0 6 2007 WD Abnorml 290000.0
227 228 160 RM 21.0 1869 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 6 1970 1970 Gable CompShg HdBoard HdBoard BrkFace 127.0 TA TA CBlock TA TA No Rec 321.0 Unf 0.0 162.0 483.0 GasA ... Y SBrkr 483 504 0 987 0.0 0.0 1 1 2 1 TA 5 Typ 0 NaN Detchd 1987.0 Unf 1.0 280.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal 106000.0
228 229 20 RL 70.0 8521 Pave NaN Reg Lvl AllPub FR2 Gtl Sawyer Feedr Norm 1Fam 1Story 5 5 1967 1967 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No ALQ 842.0 Unf 0.0 70.0 912.0 GasA ... Y SBrkr 912 0 0 912 0.0 0.0 1 0 3 1 TA 5 Typ 1 Fa Detchd 1974.0 Unf 1.0 336.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 5 2010 WD Normal 125000.0
229 230 120 RL 43.0 3182 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 16.0 Gd TA PConc Gd TA Av GLQ 16.0 Unf 0.0 1357.0 1373.0 GasA ... Y SBrkr 1555 0 0 1555 0.0 0.0 2 0 2 1 Gd 7 Typ 1 TA Attchd 2005.0 Fin 2.0 430.0 TA TA Y 143 20 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 192500.0
230 231 20 RL 73.0 8760 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1959 1959 Hip CompShg MetalSd MetalSd BrkFace 220.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1194.0 1194.0 GasA ... Y SBrkr 1194 0 0 1194 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1959.0 RFn 1.0 312.0 TA TA Y 0 0 120 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 148000.0
231 232 60 RL 174.0 15138 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1995 1996 Gable CompShg VinylSd VinylSd BrkFace 506.0 Gd TA PConc Gd TA No GLQ 689.0 Unf 0.0 773.0 1462.0 GasA ... Y SBrkr 1490 1304 0 2794 1.0 0.0 2 1 4 1 Ex 9 Typ 1 TA Attchd 1995.0 Fin 3.0 810.0 TA TA Y 0 146 202 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 403000.0
232 233 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 5 1972 1972 Gable CompShg HdBoard HdBoard BrkFace 297.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 483.0 483.0 GasA ... Y SBrkr 483 504 0 987 0.0 0.0 1 1 2 1 TA 5 Typ 1 Po Attchd 1972.0 Unf 1.0 288.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 94500.0
233 234 20 RL 75.0 10650 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 5 6 1976 1976 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA Gd Av LwQ 182.0 ALQ 712.0 0.0 894.0 GasA ... Y SBrkr 894 0 0 894 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1976.0 Unf 1.0 308.0 TA TA Y 365 0 0 0 0 0 NaN MnPrv NaN 0 2 2010 WD Normal 128200.0
234 235 60 RL NaN 7851 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2002 2002 Gable CompShg VinylSd VinylSd NaN NaN Gd TA PConc Gd TA No GLQ 625.0 Unf 0.0 235.0 860.0 GasA ... Y SBrkr 860 1100 0 1960 1.0 0.0 2 1 4 1 Gd 8 Typ 2 TA BuiltIn 2002.0 Fin 2.0 440.0 TA TA Y 288 48 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 216500.0
235 236 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm TwnhsE 2Story 6 3 1971 1971 Gable CompShg HdBoard HdBoard BrkFace 604.0 TA TA CBlock TA TA No ALQ 358.0 Unf 0.0 125.0 483.0 GasA ... Y SBrkr 483 504 0 987 0.0 0.0 1 1 2 1 TA 5 Typ 0 NaN Detchd 1971.0 Unf 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 89500.0
236 237 20 RL 65.0 8773 Pave NaN Reg Lvl AllPub FR2 Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 98.0 Gd TA PConc Gd TA Av GLQ 24.0 Unf 0.0 1390.0 1414.0 GasA ... Y SBrkr 1414 0 0 1414 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2004.0 RFn 2.0 494.0 TA TA Y 132 105 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 185500.0
237 238 60 RL NaN 9453 Pave NaN IR1 Lvl AllPub CulDSac Gtl SawyerW RRNe Norm 1Fam 2Story 7 7 1993 2003 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA No BLQ 402.0 Unf 0.0 594.0 996.0 GasA ... Y SBrkr 1014 730 0 1744 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1993.0 RFn 2.0 457.0 TA TA Y 370 70 0 238 0 0 NaN NaN NaN 0 2 2010 WD Normal 194500.0
238 239 20 RL 93.0 12030 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2007 2007 Hip CompShg VinylSd VinylSd BrkFace 254.0 Ex TA PConc Ex TA No Unf 0.0 Unf 0.0 1694.0 1694.0 GasA ... Y SBrkr 1694 0 0 1694 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2007.0 Fin 3.0 818.0 TA TA Y 168 228 0 0 0 0 NaN NaN NaN 0 12 2007 New Partial 318000.0
239 240 50 RL 52.0 8741 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 6 4 1945 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA Fa No LwQ 94.0 Unf 0.0 641.0 735.0 GasA ... Y FuseA 798 689 0 1487 0.0 0.0 1 1 3 1 TA 7 Typ 1 Gd Detchd 1949.0 Unf 1.0 220.0 TA TA Y 0 140 0 0 0 0 NaN MnPrv NaN 0 4 2010 WD Normal 113000.0
240 241 20 FV 75.0 9000 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2008 2008 Gable CompShg VinylSd VinylSd Stone 36.0 Gd TA PConc Gd TA Av GLQ 1078.0 Unf 0.0 488.0 1566.0 GasA ... Y SBrkr 1566 0 0 1566 1.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2008.0 RFn 2.0 750.0 TA TA Y 144 168 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 262500.0
241 242 30 RM 40.0 3880 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 9 1945 1997 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA TA No ALQ 329.0 Unf 0.0 357.0 686.0 GasA ... Y SBrkr 866 0 0 866 0.0 0.0 1 0 2 1 Gd 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 58 42 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 110500.0
242 243 50 RM 63.0 5000 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1.5Fin 5 4 1900 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 540.0 540.0 GasA ... N FuseA 889 551 0 1440 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1940.0 Unf 1.0 352.0 Fa TA Y 0 0 77 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 79000.0
243 244 160 RL 75.0 10762 Pave NaN Reg Lvl AllPub Corner Gtl SawyerW Norm Norm TwnhsE 2Story 6 6 1980 1980 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 626.0 626.0 GasA ... Y SBrkr 626 591 0 1217 0.0 0.0 1 1 3 1 TA 6 Typ 1 TA Attchd 1980.0 RFn 1.0 288.0 TA TA Y 0 28 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal 120000.0
244 245 60 RL NaN 8880 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 7 5 1994 2002 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 695.0 Unf 0.0 253.0 948.0 GasA ... Y SBrkr 1222 888 0 2110 1.0 0.0 2 1 3 1 Gd 8 Typ 2 Fa Attchd 1994.0 RFn 2.0 463.0 TA TA Y 0 130 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 205000.0
245 246 20 RL 80.0 10400 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 7 5 1988 1988 Gable CompShg Wd Sdng Wd Sdng BrkFace 102.0 TA TA CBlock Gd TA Av GLQ 929.0 Unf 0.0 916.0 1845.0 GasA ... Y SBrkr 1872 0 0 1872 0.0 1.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1988.0 Fin 2.0 604.0 TA TA Y 197 39 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 241500.0
246 247 190 RM 69.0 9142 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 2fmCon 2Story 6 8 1910 1950 Gable CompShg AsbShng AsbShng None 0.0 TA Fa Stone Fa TA No Unf 0.0 Unf 0.0 1020.0 1020.0 GasA ... N FuseP 908 1020 0 1928 0.0 0.0 2 0 4 2 Fa 9 Typ 0 NaN Detchd 1910.0 Unf 1.0 440.0 Po Po Y 0 60 112 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 137000.0
247 248 20 RL 75.0 11310 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1954 1954 Hip CompShg Wd Sdng BrkFace None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1367.0 1367.0 GasA ... Y SBrkr 1375 0 0 1375 0.0 0.0 1 0 2 1 TA 5 Typ 1 TA Attchd 1954.0 Unf 2.0 451.0 TA TA Y 0 30 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 140000.0
248 249 60 RL 72.0 11317 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 101.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 840.0 840.0 GasA ... Y SBrkr 840 828 0 1668 0.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 2003.0 RFn 2.0 500.0 TA TA Y 144 68 0 0 0 0 NaN NaN NaN 0 9 2007 WD Normal 180000.0
249 250 50 RL NaN 159000 Pave NaN IR2 Low AllPub CulDSac Sev ClearCr Norm Norm 1Fam 1.5Fin 6 7 1958 2006 Gable CompShg Wd Sdng HdBoard BrkCmn 472.0 Gd TA CBlock Gd TA Gd Rec 697.0 Unf 0.0 747.0 1444.0 GasA ... Y SBrkr 1444 700 0 2144 0.0 1.0 2 0 4 1 Gd 7 Typ 2 TA Attchd 1958.0 Fin 2.0 389.0 TA TA Y 0 98 0 0 0 0 NaN NaN Shed 500 6 2007 WD Normal 277000.0
250 251 30 RL 55.0 5350 Pave NaN IR1 Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 3 2 1940 1966 Gable CompShg Wd Sdng Plywood None 0.0 TA Po CBlock TA TA No Unf 0.0 Unf 0.0 728.0 728.0 GasA ... Y SBrkr 1306 0 0 1306 0.0 0.0 1 0 3 1 Fa 6 Mod 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 263 0 0 0 0 0 NaN GdWo Shed 450 5 2010 WD Normal 76500.0
251 252 120 RM 44.0 4750 Pave NaN IR1 HLS AllPub Inside Mod Crawfor Norm Norm TwnhsE 1Story 8 5 2006 2007 Hip CompShg VinylSd VinylSd Stone 481.0 Gd TA PConc Gd TA Gd GLQ 1573.0 Unf 0.0 0.0 1573.0 GasA ... Y SBrkr 1625 0 0 1625 1.0 1.0 2 0 2 1 Gd 5 Typ 1 Gd Attchd 2006.0 Fin 2.0 538.0 TA TA Y 123 0 0 0 153 0 NaN NaN NaN 0 12 2007 WD Family 235000.0
252 253 60 RL 65.0 8366 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 6 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 798.0 798.0 GasA ... Y SBrkr 798 842 0 1640 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2004.0 RFn 2.0 520.0 TA TA Y 138 45 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal 173000.0
253 254 80 RL 85.0 9350 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 6 7 1964 1991 Hip CompShg HdBoard HdBoard BrkFace 108.0 TA TA CBlock Gd TA Gd LwQ 270.0 ALQ 580.0 452.0 1302.0 GasA ... Y SBrkr 1302 0 0 1302 0.0 1.0 2 0 3 1 Gd 7 Min1 0 NaN Attchd 1964.0 RFn 1.0 309.0 TA TA Y 333 0 0 0 0 0 NaN MnPrv NaN 0 10 2007 CWD Normal 158000.0
254 255 20 RL 70.0 8400 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1957 1957 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No Rec 922.0 Unf 0.0 392.0 1314.0 GasA ... Y SBrkr 1314 0 0 1314 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1957.0 RFn 1.0 294.0 TA TA Y 250 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 145000.0
255 256 60 RL 66.0 8738 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 1999 1999 Gable CompShg VinylSd VinylSd BrkFace 302.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 975.0 975.0 GasA ... Y SBrkr 1005 1286 0 2291 0.0 0.0 2 1 4 1 Gd 8 Typ 1 TA BuiltIn 1999.0 Fin 2.0 429.0 TA TA Y 192 0 0 0 0 0 NaN NaN NaN 0 2 2006 WD Normal 230000.0
256 257 60 FV 64.0 8791 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 6 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Rec 503.0 Unf 0.0 361.0 864.0 GasA ... Y SBrkr 864 864 0 1728 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2003.0 RFn 2.0 673.0 TA TA Y 216 56 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 207500.0
257 258 20 RL 68.0 8814 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd Stone 180.0 Gd TA PConc Gd TA No GLQ 1334.0 Unf 0.0 270.0 1604.0 GasA ... Y SBrkr 1604 0 0 1604 1.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2006.0 RFn 2.0 660.0 TA TA Y 123 110 0 0 0 0 NaN NaN NaN 0 3 2009 WD Abnorml 220000.0
258 259 60 RL 80.0 12435 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2001 2001 Gable CompShg VinylSd VinylSd BrkFace 172.0 Gd TA PConc Gd TA No GLQ 361.0 Unf 0.0 602.0 963.0 GasA ... Y SBrkr 963 829 0 1792 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 2001.0 RFn 2.0 564.0 TA TA Y 0 96 0 245 0 0 NaN NaN NaN 0 5 2008 WD Normal 231500.0
259 260 20 RM 70.0 12702 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 5 1956 1956 Gable CompShg BrkFace BrkFace None 0.0 TA TA PConc NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y FuseA 882 0 0 882 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1956.0 Unf 1.0 308.0 TA TA Y 0 45 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal 97000.0
260 261 80 RL 120.0 19296 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Artery Norm 1Fam SLvl 6 5 1962 1962 Gable CompShg Wd Sdng Wd Sdng BrkFace 399.0 TA TA CBlock TA TA Gd Rec 672.0 ALQ 690.0 0.0 1362.0 GasA ... Y SBrkr 1382 0 0 1382 1.0 0.0 1 0 3 1 TA 6 Typ 1 TA Attchd 1991.0 Unf 2.0 884.0 TA TA Y 0 0 252 0 0 0 NaN GdWo NaN 0 5 2009 WD Normal 176000.0
261 262 60 RL 69.0 9588 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 8 5 2007 2007 Gable CompShg CemntBd CmentBd Stone 270.0 Gd TA PConc Ex TA No Unf 0.0 Unf 0.0 1482.0 1482.0 GasA ... Y SBrkr 1482 1092 0 2574 0.0 0.0 2 1 3 1 Ex 10 Typ 1 Gd BuiltIn 2007.0 Fin 3.0 868.0 TA TA Y 0 148 0 0 0 0 NaN NaN NaN 0 11 2007 New Partial 276000.0
262 263 80 RL 88.0 8471 Pave NaN IR1 Lvl AllPub Corner Gtl Sawyer Norm Norm 1Fam SLvl 6 7 1977 1995 Gable CompShg HdBoard Plywood BrkFace 46.0 TA TA CBlock Gd Gd Av ALQ 506.0 Unf 0.0 0.0 506.0 GasA ... Y SBrkr 1212 0 0 1212 1.0 0.0 1 0 3 1 TA 6 Typ 1 TA Attchd 1978.0 Unf 2.0 492.0 TA TA Y 292 12 0 0 0 0 NaN GdWo NaN 0 7 2006 WD Normal 151000.0
263 264 50 RM 50.0 5500 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1.5Fin 5 7 1929 2001 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No LwQ 234.0 ALQ 692.0 0.0 926.0 GasA ... Y SBrkr 926 0 390 1316 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1974.0 Unf 2.0 484.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 130000.0
264 265 30 RM 30.0 5232 Pave Grvl IR3 Bnk AllPub Inside Gtl OldTown Artery Norm 1Fam 1Story 5 5 1925 2004 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Fa TA No Unf 0.0 Unf 0.0 680.0 680.0 GasA ... N FuseP 764 0 0 764 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1965.0 Unf 2.0 504.0 TA TA N 0 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 73000.0
265 266 20 RL 78.0 12090 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 6 1981 1981 Gable CompShg MetalSd MetalSd BrkFace 210.0 TA Gd CBlock Gd TA No GLQ 588.0 LwQ 228.0 606.0 1422.0 GasA ... Y SBrkr 1422 0 0 1422 0.0 0.0 2 0 3 1 Gd 7 Typ 1 TA Attchd 1981.0 Fin 2.0 576.0 TA TA Y 276 0 0 0 0 0 NaN GdPrv NaN 0 6 2008 WD Normal 175500.0
266 267 60 RL 70.0 11207 Pave NaN IR1 HLS AllPub FR2 Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1997 1997 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Av GLQ 714.0 Unf 0.0 88.0 802.0 GasA ... Y SBrkr 802 709 0 1511 1.0 0.0 2 1 3 1 TA 8 Typ 1 TA Attchd 1997.0 Fin 2.0 413.0 TA TA Y 95 75 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 185000.0
267 268 75 RL 60.0 8400 Pave NaN Reg Bnk AllPub Inside Mod SWISU Norm Norm 1Fam 2.5Fin 5 8 1939 1997 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No LwQ 378.0 Unf 0.0 342.0 720.0 GasA ... Y SBrkr 1052 720 420 2192 0.0 0.0 2 1 4 1 Gd 8 Typ 1 Gd Detchd 1939.0 Unf 1.0 240.0 TA TA Y 262 24 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 179500.0
268 269 30 RM 71.0 6900 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 5 6 1940 1955 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No ALQ 403.0 Rec 125.0 212.0 740.0 GasA ... Y SBrkr 778 0 0 778 0.0 0.0 1 0 2 1 TA 4 Typ 1 Gd Detchd 1966.0 Fin 1.0 924.0 Ex Ex Y 0 25 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal 120500.0
269 270 20 RL NaN 7917 Pave NaN IR1 Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 1Story 6 7 1976 1976 Hip CompShg HdBoard HdBoard BrkFace 174.0 TA Gd CBlock TA Gd No BLQ 751.0 Unf 0.0 392.0 1143.0 GasA ... Y SBrkr 1113 0 0 1113 1.0 0.0 1 1 3 1 TA 6 Typ 1 Fa Attchd 1987.0 RFn 1.0 504.0 TA Gd Y 370 30 0 0 0 0 NaN GdPrv NaN 0 5 2007 WD Normal 148000.0
270 271 60 FV 84.0 10728 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Mn Unf 0.0 Unf 0.0 1095.0 1095.0 GasA ... Y SBrkr 1095 844 0 1939 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2006.0 RFn 3.0 1053.0 TA TA Y 192 51 0 0 0 0 NaN NaN NaN 0 8 2006 New Partial 266000.0
271 272 20 RL 73.0 39104 Pave NaN IR1 Low AllPub CulDSac Sev ClearCr Norm Norm 1Fam 1Story 7 7 1954 2005 Flat Membran Plywood Plywood None 0.0 TA TA CBlock Gd TA Gd LwQ 226.0 GLQ 1063.0 96.0 1385.0 GasA ... Y SBrkr 1363 0 0 1363 1.0 0.0 1 0 2 1 TA 5 Mod 2 TA Attchd 1954.0 Unf 2.0 439.0 TA TA Y 81 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal 241500.0
272 273 60 RL 92.0 11764 Pave NaN IR1 Lvl AllPub CulDSac Gtl NoRidge Norm Norm 1Fam 2Story 8 7 1999 2007 Gable CompShg VinylSd VinylSd BrkFace 348.0 Gd TA PConc Gd TA No GLQ 524.0 Unf 0.0 628.0 1152.0 GasA ... Y SBrkr 1164 1106 0 2270 0.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd Attchd 1999.0 Fin 3.0 671.0 TA TA Y 132 57 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 290000.0
273 274 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam 1Story 6 6 1958 1988 Hip CompShg Wd Sdng Wd Sdng BrkCmn 183.0 TA TA CBlock TA TA No Rec 620.0 LwQ 620.0 0.0 1240.0 GasA ... Y SBrkr 1632 0 0 1632 1.0 0.0 2 0 3 1 TA 6 Min1 1 Gd Attchd 1958.0 RFn 1.0 338.0 TA TA Y 289 0 0 0 0 0 NaN MnPrv NaN 0 4 2009 WD Normal 139000.0
274 275 20 RL 76.0 8314 Pave NaN Reg Lvl AllPub Corner Gtl Mitchel Norm Norm 1Fam 1Story 5 7 1982 1982 Gable CompShg HdBoard ImStucc None 0.0 TA TA CBlock TA TA Gd ALQ 546.0 Unf 0.0 270.0 816.0 GasA ... Y SBrkr 816 0 0 816 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1982.0 Unf 1.0 264.0 TA TA Y 168 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 124500.0
275 276 50 RL 55.0 7264 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 7 7 1925 2007 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd Gd BrkTil TA TA No Unf 0.0 Unf 0.0 952.0 952.0 GasW ... N SBrkr 952 596 0 1548 0.0 0.0 2 1 3 1 Ex 5 Typ 0 NaN Detchd 1978.0 Unf 2.0 672.0 TA TA Y 74 0 0 0 144 0 NaN NaN NaN 0 10 2009 WD Normal 205000.0
276 277 20 RL 129.0 9196 Pave NaN IR1 Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA No Unf 0.0 Unf 0.0 1560.0 1560.0 GasA ... Y SBrkr 1560 0 0 1560 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2003.0 Fin 2.0 573.0 TA TA Y 100 150 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 201000.0
277 278 20 RL 140.0 19138 Pave NaN Reg Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 1Story 4 5 1951 1951 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No LwQ 120.0 Unf 0.0 744.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1951.0 Unf 2.0 400.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 141000.0
278 279 20 RL 107.0 14450 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2006 2007 Gable CompShg CemntBd CmentBd BrkFace 315.0 Ex TA PConc Ex TA Gd Unf 0.0 Unf 0.0 2121.0 2121.0 GasA ... Y SBrkr 2121 0 0 2121 0.0 0.0 2 1 3 1 Ex 8 Typ 1 Ex Attchd 2007.0 Fin 3.0 732.0 TA TA Y 124 98 0 0 142 0 NaN NaN NaN 0 5 2007 New Partial 415298.0
279 280 60 RL 83.0 10005 Pave NaN Reg Lvl AllPub Inside Gtl ClearCr Norm Norm 1Fam 2Story 7 5 1977 1977 Hip CompShg Plywood Plywood BrkFace 299.0 TA TA CBlock Gd TA No BLQ 392.0 Unf 0.0 768.0 1160.0 GasA ... Y SBrkr 1156 866 0 2022 0.0 0.0 2 1 4 1 TA 8 Typ 1 TA Attchd 1977.0 Fin 2.0 505.0 TA TA Y 288 117 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal 192000.0
280 281 60 RL 82.0 11287 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 7 6 1989 1989 Gable CompShg Plywood Plywood BrkFace 340.0 Gd TA CBlock Gd TA Av GLQ 421.0 Unf 0.0 386.0 807.0 GasA ... Y SBrkr 1175 807 0 1982 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1989.0 Fin 2.0 575.0 TA TA Y 0 84 0 196 0 0 NaN NaN NaN 0 1 2007 WD Normal 228500.0
281 282 20 FV 60.0 7200 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 6 5 2006 2006 Gable CompShg VinylSd VinylSd Stone 68.0 Gd TA PConc Gd TA No GLQ 905.0 Unf 0.0 357.0 1262.0 GasA ... Y SBrkr 1262 0 0 1262 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 2006.0 Fin 2.0 572.0 TA TA Y 0 120 0 0 0 0 NaN NaN NaN 0 5 2006 New Partial 185000.0
282 283 120 RL 34.0 5063 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm Twnhs 1Story 7 5 2007 2008 Gable CompShg VinylSd VinylSd Stone 166.0 Gd TA PConc Gd TA No GLQ 904.0 Unf 0.0 410.0 1314.0 GasA ... Y SBrkr 1314 0 0 1314 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2008.0 RFn 2.0 626.0 TA TA Y 172 62 0 0 0 0 NaN NaN NaN 0 4 2009 ConLw Normal 207500.0
283 284 20 RL 74.0 9612 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Feedr Norm 1Fam 1Story 8 5 2008 2009 Gable CompShg VinylSd VinylSd Stone 72.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1468.0 1468.0 GasA ... Y SBrkr 1468 0 0 1468 0.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2008.0 Fin 3.0 898.0 TA TA Y 210 150 0 0 0 0 NaN NaN NaN 0 12 2009 New Partial 244600.0
284 285 120 RL 50.0 8012 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm TwnhsE 1Story 6 5 1992 1992 Gable CompShg Plywood ImStucc None 0.0 Gd TA PConc Gd TA No GLQ 430.0 Unf 0.0 1145.0 1575.0 GasA ... Y SBrkr 1575 0 0 1575 1.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 1992.0 RFn 2.0 529.0 TA TA Y 0 0 52 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 179200.0
285 286 160 FV 35.0 4251 Pave Pave IR1 Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 2Story 7 5 2006 2007 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 625.0 625.0 GasA ... Y SBrkr 625 625 0 1250 0.0 0.0 2 1 2 1 Gd 5 Typ 0 NaN Detchd 2006.0 RFn 2.0 528.0 TA TA Y 0 54 0 0 0 0 NaN NaN NaN 0 6 2007 New Partial 164700.0
286 287 50 RL 77.0 9786 Pave NaN IR1 Bnk AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Fin 6 7 1962 1981 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 600.0 Unf 0.0 312.0 912.0 GasA ... Y SBrkr 1085 649 0 1734 0.0 0.0 1 1 3 1 Gd 7 Typ 1 Gd Attchd 1962.0 RFn 2.0 440.0 TA TA Y 0 0 0 0 128 0 NaN GdPrv NaN 0 6 2006 WD Normal 159000.0
287 288 20 RL NaN 8125 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 4 4 1971 1971 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No BLQ 614.0 Unf 0.0 244.0 858.0 GasA ... Y SBrkr 858 0 0 858 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 88000.0
288 289 20 RL NaN 9819 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1967 1967 Gable CompShg MetalSd MetalSd BrkFace 31.0 TA Gd CBlock TA TA No BLQ 450.0 Unf 0.0 432.0 882.0 GasA ... Y SBrkr 900 0 0 900 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1970.0 Unf 1.0 280.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 2 2010 WD Normal 122000.0
289 290 70 RL 60.0 8730 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide RRAn Norm 1Fam 2Story 6 7 1915 2003 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 698.0 698.0 GasA ... Y FuseA 698 698 0 1396 0.0 0.0 1 0 3 1 TA 7 Typ 0 NaN Detchd 2003.0 Unf 1.0 384.0 TA TA Y 0 0 0 0 259 0 NaN NaN NaN 0 7 2007 WD Normal 153575.0
290 291 60 RL 120.0 15611 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1079.0 1079.0 GasA ... Y SBrkr 1079 840 0 1919 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2006.0 RFn 2.0 685.0 Gd TA Y 0 51 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial 233230.0
291 292 190 RL 55.0 5687 Pave Grvl Reg Bnk AllPub Inside Gtl SWISU Norm Norm 2fmCon 2Story 5 6 1912 2000 Gable CompShg VinylSd VinylSd None 0.0 TA Fa PConc TA Fa No Rec 210.0 Unf 0.0 570.0 780.0 GasA ... N SBrkr 936 780 0 1716 1.0 0.0 2 0 6 1 Fa 9 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 184 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal 135900.0
292 293 50 RL 60.0 11409 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 5 4 1949 2008 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No LwQ 292.0 Unf 0.0 476.0 768.0 GasA ... Y SBrkr 1148 568 0 1716 0.0 0.0 1 1 3 1 TA 8 Min2 1 Gd Attchd 1949.0 Unf 1.0 281.0 TA TA Y 0 0 0 0 160 0 NaN NaN NaN 0 1 2009 WD Normal 131000.0
293 294 60 RL NaN 16659 Pave NaN IR1 Lvl AllPub Corner Gtl NWAmes PosA Norm 1Fam 2Story 7 7 1977 1994 Gable CompShg Plywood Plywood BrkFace 34.0 TA TA CBlock TA TA No ALQ 795.0 Unf 0.0 0.0 795.0 GasA ... Y SBrkr 1468 795 0 2263 1.0 0.0 2 1 3 1 Gd 9 Typ 1 TA Attchd 1977.0 Fin 2.0 539.0 TA TA Y 0 250 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal 235000.0
294 295 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1953 1953 Hip CompShg HdBoard HdBoard Stone 238.0 TA TA CBlock TA TA No GLQ 1285.0 Unf 0.0 131.0 1416.0 GasA ... Y SBrkr 1644 0 0 1644 1.0 0.0 1 0 3 1 TA 7 Typ 2 Gd Attchd 1953.0 Fin 2.0 418.0 TA TA Y 110 0 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal 167000.0
295 296 80 RL 37.0 7937 Pave NaN IR1 Lvl AllPub CulDSac Gtl Mitchel Norm Norm 1Fam SLvl 6 6 1984 1984 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA Av GLQ 819.0 Unf 0.0 184.0 1003.0 GasA ... Y SBrkr 1003 0 0 1003 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1984.0 Unf 2.0 588.0 TA TA Y 120 0 0 0 0 0 NaN GdPrv NaN 0 3 2006 WD Normal 142500.0
296 297 50 RM 75.0 13710 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 5 5 1950 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No BLQ 420.0 Unf 0.0 490.0 910.0 GasA ... Y FuseA 910 648 0 1558 0.0 0.0 1 1 4 1 TA 6 Typ 0 NaN Attchd 1950.0 Unf 1.0 282.0 TA TA Y 289 0 0 0 0 0 NaN MnPrv NaN 0 6 2007 WD Normal 152000.0
297 298 60 FV 66.0 7399 Pave Pave IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 1997 1998 Hip CompShg VinylSd VinylSd BrkFace 1600.0 Gd TA PConc Gd TA No BLQ 649.0 Unf 0.0 326.0 975.0 GasA ... Y SBrkr 975 975 0 1950 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Detchd 1997.0 RFn 2.0 576.0 TA TA Y 0 10 0 0 198 0 NaN NaN NaN 0 6 2007 WD Normal 239000.0
298 299 60 RL 90.0 11700 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 6 6 1968 1968 Mansard CompShg HdBoard AsphShn BrkFace 365.0 Gd TA CBlock TA TA No ALQ 384.0 Rec 175.0 143.0 702.0 GasA ... Y SBrkr 1041 702 0 1743 0.0 1.0 1 2 3 1 TA 7 Typ 1 Gd Attchd 1968.0 Unf 2.0 539.0 TA TA Y 224 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 175000.0
299 300 20 RL 80.0 14000 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 6 8 1950 2004 Gable CompShg HdBoard HdBoard None 0.0 TA Gd CBlock TA TA No Unf 0.0 Unf 0.0 1092.0 1092.0 GasA ... Y SBrkr 1152 0 0 1152 0.0 1.0 1 0 3 1 Gd 6 Typ 1 Gd Attchd 1950.0 Unf 1.0 300.0 TA TA Y 0 36 0 0 0 0 NaN GdPrv NaN 0 8 2009 WD Family 158500.0
300 301 190 RL 90.0 15750 Pave NaN Reg Lvl AllPub Corner Gtl Crawfor Norm Norm 2fmCon 1Story 5 5 1953 1953 Hip CompShg MetalSd MetalSd BrkFace 56.0 TA TA CBlock TA TA Mn BLQ 841.0 Unf 0.0 324.0 1165.0 GasA ... Y SBrkr 1336 0 0 1336 1.0 0.0 1 0 2 1 TA 5 Typ 2 Gd Attchd 1953.0 Unf 1.0 375.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 157000.0
301 302 60 RL 66.0 16226 Pave NaN IR3 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 8 5 1998 1999 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 281.0 Unf 0.0 747.0 1028.0 GasA ... Y SBrkr 1210 1242 0 2452 0.0 0.0 2 1 4 1 Gd 9 Typ 1 TA BuiltIn 1998.0 Fin 2.0 683.0 TA TA Y 208 50 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 267000.0
302 303 20 RL 118.0 13704 Pave NaN IR1 Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2001 2002 Gable CompShg VinylSd VinylSd BrkFace 150.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1541.0 1541.0 GasA ... Y SBrkr 1541 0 0 1541 0.0 0.0 2 0 3 1 Gd 6 Typ 1 TA Attchd 2001.0 RFn 3.0 843.0 TA TA Y 468 81 0 0 0 0 NaN NaN NaN 0 1 2006 WD Normal 205000.0
303 304 20 RL 70.0 9800 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 5 7 1972 1972 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc TA TA No ALQ 894.0 Unf 0.0 0.0 894.0 GasA ... Y SBrkr 894 0 0 894 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1975.0 Unf 2.0 552.0 TA TA Y 256 0 0 0 0 0 NaN GdWo NaN 0 7 2006 WD Abnorml 149900.0
304 305 75 RM 87.0 18386 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2.5Fin 7 9 1880 2002 Gable CompShg CemntBd CmentBd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 1470.0 1470.0 GasA ... Y SBrkr 1675 1818 0 3493 0.0 0.0 3 0 3 1 Gd 10 Typ 1 Ex Attchd 2003.0 Unf 3.0 870.0 TA TA Y 302 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 295000.0
305 306 20 RL 80.0 10386 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2004 2005 Gable CompShg CemntBd CmentBd Stone 246.0 Gd TA PConc Gd TA No GLQ 1464.0 Unf 0.0 536.0 2000.0 GasA ... Y SBrkr 2000 0 0 2000 1.0 0.0 2 0 3 1 Gd 8 Typ 0 NaN Attchd 2004.0 Fin 3.0 888.0 TA TA Y 168 0 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 305900.0
306 307 60 RL 116.0 13474 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Feedr Norm 1Fam 2Story 7 5 1990 1991 Gable CompShg HdBoard Plywood BrkFace 246.0 Gd TA CBlock Gd TA No ALQ 700.0 Unf 0.0 0.0 700.0 GasA ... Y SBrkr 1122 1121 0 2243 1.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Attchd 1990.0 RFn 3.0 746.0 TA TA Y 127 44 224 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 225000.0
307 308 50 RM NaN 7920 Pave Grvl IR1 Lvl AllPub Inside Gtl IDOTRR Artery Norm 1Fam 1.5Fin 6 7 1920 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Fa CBlock TA TA No Unf 0.0 Unf 0.0 319.0 319.0 GasA ... Y FuseA 1035 371 0 1406 0.0 0.0 1 0 3 1 Fa 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 144 0 0 0 0 NaN MnPrv NaN 0 3 2008 WD Normal 89500.0
308 309 30 RL NaN 12342 Pave NaN IR1 Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 5 1940 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No BLQ 262.0 Unf 0.0 599.0 861.0 GasA ... Y SBrkr 861 0 0 861 0.0 0.0 1 0 1 1 TA 4 Typ 0 NaN Detchd 1961.0 Unf 2.0 539.0 TA TA Y 158 0 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal 82500.0
309 310 20 RL 90.0 12378 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2003 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA Gd GLQ 1274.0 Unf 0.0 622.0 1896.0 GasA ... Y SBrkr 1944 0 0 1944 1.0 0.0 2 0 3 1 Ex 8 Typ 3 Ex Attchd 2003.0 Fin 3.0 708.0 TA TA Y 208 175 0 0 0 0 NaN NaN NaN 0 11 2006 WD Normal 360000.0
310 311 60 RL NaN 7685 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1993 1994 Gable CompShg HdBoard HdBoard BrkFace 112.0 TA TA PConc Gd TA No ALQ 518.0 Unf 0.0 179.0 697.0 GasA ... Y SBrkr 697 804 0 1501 0.0 0.0 2 1 3 1 Gd 6 Typ 1 TA Attchd 1993.0 Fin 2.0 420.0 TA TA Y 190 63 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 165600.0
311 312 20 RL 50.0 8000 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1948 2002 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA TA No ALQ 680.0 Unf 0.0 292.0 972.0 GasA ... Y SBrkr 972 0 0 972 1.0 0.0 1 0 2 1 TA 5 Typ 1 Gd Detchd 1948.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 132000.0
312 313 190 RM 65.0 7800 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 2fmCon 1.5Fin 5 7 1939 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Gd TA Mn Rec 507.0 Unf 0.0 286.0 793.0 GasA ... Y SBrkr 793 325 0 1118 1.0 0.0 1 0 3 1 TA 5 Typ 1 Gd Detchd 1939.0 Unf 2.0 410.0 TA TA Y 0 0 0 0 271 0 NaN MnPrv NaN 0 5 2006 WD Normal 119900.0
313 314 20 RL 150.0 215245 Pave NaN IR3 Low AllPub Inside Sev Timber Norm Norm 1Fam 1Story 7 5 1965 1965 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock Gd TA Gd ALQ 1236.0 Rec 820.0 80.0 2136.0 GasW ... Y SBrkr 2036 0 0 2036 2.0 0.0 2 0 3 1 TA 8 Typ 2 Gd Attchd 1965.0 RFn 2.0 513.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 375000.0
314 315 70 RM 60.0 9600 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 7 7 1925 1990 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA Gd No LwQ 16.0 Unf 0.0 712.0 728.0 GasA ... Y SBrkr 832 809 0 1641 0.0 1.0 1 1 3 1 Ex 6 Typ 1 Gd Detchd 1925.0 Unf 2.0 546.0 Fa TA Y 0 0 234 0 0 0 NaN NaN NaN 0 8 2006 WD Normal 178000.0
315 316 60 RL 71.0 7795 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2004 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 425.0 Unf 0.0 291.0 716.0 GasA ... Y SBrkr 716 716 0 1432 1.0 0.0 2 1 3 1 Gd 6 Typ 1 Gd Attchd 2004.0 Fin 2.0 432.0 TA TA Y 100 51 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 188500.0
316 317 60 RL 94.0 13005 Pave NaN IR1 Lvl AllPub Corner Gtl NWAmes Norm Norm 1Fam 2Story 7 7 1980 1980 Gable CompShg CemntBd CmentBd BrkFace 278.0 Gd TA CBlock Gd TA No GLQ 692.0 Unf 0.0 153.0 845.0 GasA ... Y SBrkr 1153 1200 0 2353 1.0 0.0 2 1 4 1 Ex 10 Typ 1 TA Attchd 1983.0 RFn 2.0 484.0 TA TA Y 288 195 0 0 0 0 NaN GdPrv NaN 0 8 2009 WD Normal 260000.0
317 318 60 FV 75.0 9000 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1088.0 1088.0 GasA ... Y SBrkr 1088 871 0 1959 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2006.0 RFn 3.0 1025.0 TA TA Y 208 46 0 0 0 0 NaN NaN NaN 0 12 2007 WD Normal 270000.0
318 319 60 RL 90.0 9900 Pave NaN Reg Low AllPub Inside Mod NoRidge Norm Norm 1Fam 2Story 7 5 1993 1993 Gable CompShg HdBoard HdBoard BrkFace 256.0 Gd TA PConc Gd TA Gd GLQ 987.0 Unf 0.0 360.0 1347.0 GasA ... Y SBrkr 1372 1274 0 2646 1.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1993.0 RFn 3.0 656.0 TA TA Y 340 60 144 0 0 0 NaN NaN NaN 0 4 2009 WD Normal 260000.0
319 320 80 RL NaN 14115 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam SLvl 7 5 1980 1980 Gable CompShg Plywood Plywood BrkFace 225.0 TA TA CBlock Gd TA Av GLQ 1036.0 Unf 0.0 336.0 1372.0 GasA ... Y SBrkr 1472 0 0 1472 1.0 0.0 2 0 3 1 TA 6 Typ 2 TA Attchd 1980.0 Unf 2.0 588.0 TA TA Y 233 48 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 187500.0
320 321 60 RL 111.0 16259 Pave NaN Reg Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2006 2006 Gable CompShg VinylSd VinylSd Stone 370.0 TA TA PConc Ex Gd Av Unf 0.0 Unf 0.0 1249.0 1249.0 GasA ... Y SBrkr 1249 1347 0 2596 0.0 0.0 3 1 4 1 Gd 9 Typ 0 NaN Attchd 2006.0 RFn 3.0 840.0 TA TA Y 240 154 0 0 0 0 NaN NaN NaN 0 9 2006 New Partial 342643.0
321 322 60 RL 99.0 12099 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 388.0 Gd TA PConc Ex TA Av GLQ 970.0 Unf 0.0 166.0 1136.0 GasA ... Y SBrkr 1136 1332 0 2468 1.0 0.0 2 1 4 1 Gd 10 Typ 1 Gd BuiltIn 2004.0 Fin 3.0 872.0 TA TA Y 184 154 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 354000.0
322 323 60 RL 86.0 10380 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 7 5 1986 1987 Gable CompShg Plywood Plywood BrkFace 172.0 Gd TA CBlock TA TA Gd LwQ 28.0 ALQ 1474.0 0.0 1502.0 GasA ... Y SBrkr 1553 1177 0 2730 1.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Attchd 1987.0 Fin 2.0 576.0 TA TA Y 201 96 0 0 0 0 NaN MnPrv NaN 0 8 2007 WD Normal 301000.0
323 324 20 RM 49.0 5820 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 3 8 1955 2005 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA TA No ALQ 256.0 Unf 0.0 906.0 1162.0 GasA ... Y SBrkr 1163 0 0 1163 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1955.0 Unf 1.0 220.0 Fa TA Y 142 98 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 126175.0
324 325 80 RL 96.0 11275 Pave NaN Reg Lvl AllPub Corner Gtl NAmes PosN Norm 1Fam SLvl 7 7 1967 2007 Mansard WdShake Wd Sdng Wd Sdng BrkFace 300.0 Gd Gd CBlock Gd TA No Unf 0.0 Unf 0.0 710.0 710.0 GasA ... Y SBrkr 1898 1080 0 2978 0.0 0.0 2 1 5 1 Gd 11 Typ 1 Gd BuiltIn 1961.0 Fin 2.0 564.0 TA TA Y 240 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 242000.0
325 326 45 RM 50.0 5000 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR RRAe Norm 1Fam 1.5Unf 5 6 1941 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA Av BLQ 116.0 Unf 0.0 604.0 720.0 GasA ... N FuseF 803 0 0 803 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1941.0 Unf 2.0 360.0 TA TA Y 0 0 244 0 0 0 NaN NaN NaN 0 12 2007 WD Normal 87000.0
326 327 120 RL 32.0 10846 Pave NaN IR1 Lvl AllPub CulDSac Gtl Veenker Norm Norm TwnhsE 1Story 8 5 1993 1993 Gable CompShg BrkFace BrkFace None 0.0 Gd TA PConc Gd TA Gd GLQ 1619.0 Unf 0.0 100.0 1719.0 GasA ... Y SBrkr 1719 0 0 1719 2.0 0.0 1 1 1 1 Gd 6 Typ 2 Gd Attchd 1993.0 Fin 2.0 473.0 TA TA Y 122 30 0 0 0 0 NaN NaN NaN 0 5 2008 Con Normal 324000.0
327 328 20 RL 80.0 11600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1960 1960 Hip CompShg Wd Sdng Wd Sdng BrkFace 175.0 TA TA CBlock TA TA No Rec 565.0 Unf 0.0 818.0 1383.0 GasA ... Y SBrkr 1383 0 0 1383 0.0 0.0 1 1 3 1 TA 7 Typ 0 NaN Attchd 1960.0 RFn 1.0 292.0 TA TA Y 0 45 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 145250.0
328 329 75 RL NaN 11888 Pave Pave IR1 Bnk AllPub Inside Gtl BrkSide PosN Norm 1Fam 2.5Unf 6 6 1916 1994 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 844.0 844.0 GasA ... N FuseA 1445 689 0 2134 0.0 0.0 2 0 5 1 Gd 10 Typ 0 NaN Detchd 1930.0 Unf 2.0 441.0 TA TA Y 0 60 268 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 214500.0
329 330 70 RM 60.0 6402 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Norm Norm 1Fam 2Story 5 5 1920 1950 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA PConc TA TA Mn Unf 0.0 Unf 0.0 596.0 596.0 GasA ... N SBrkr 596 596 0 1192 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1920.0 Unf 1.0 189.0 Fa Fa N 0 0 137 0 0 0 NaN GdWo NaN 0 7 2009 WD Normal 78000.0
330 331 90 RL NaN 10624 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm Duplex 1Story 5 4 1964 1964 Gable CompShg HdBoard HdBoard BrkFace 84.0 TA TA CBlock TA TA No GLQ 40.0 Rec 264.0 1424.0 1728.0 GasA ... Y SBrkr 1728 0 0 1728 0.0 1.0 2 0 6 2 TA 10 Typ 0 NaN Detchd 2002.0 Unf 1.0 352.0 TA TA Y 155 0 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal 119000.0
331 332 20 RL 70.0 8176 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1958 1992 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 846.0 Unf 0.0 210.0 1056.0 GasA ... Y SBrkr 1056 0 0 1056 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1958.0 RFn 1.0 308.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 139000.0
332 333 20 RL 85.0 10655 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2003 2004 Gable CompShg VinylSd VinylSd BrkFace 296.0 Gd TA PConc Gd TA No GLQ 1124.0 NaN 479.0 1603.0 3206.0 GasA ... Y SBrkr 1629 0 0 1629 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2003.0 RFn 3.0 880.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal 284000.0
333 334 120 RM 59.0 8198 Pave NaN Reg Lvl AllPub FR3 Gtl NridgHt Norm Norm TwnhsE 1Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd Stone 146.0 Gd TA PConc Gd TA Av GLQ 720.0 Unf 0.0 638.0 1358.0 GasA ... Y SBrkr 1358 0 0 1358 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2004.0 RFn 2.0 484.0 TA TA Y 192 30 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 207000.0
334 335 60 RL 59.0 9042 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1998 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Gd GLQ 828.0 Unf 0.0 115.0 943.0 GasA ... Y SBrkr 943 695 0 1638 1.0 0.0 2 1 3 1 TA 7 Typ 2 TA Attchd 1998.0 Fin 2.0 472.0 TA TA Y 100 38 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 192000.0
335 336 190 RL NaN 164660 Grvl NaN IR1 HLS AllPub Corner Sev Timber Norm Norm 2fmCon 1.5Fin 5 6 1965 1965 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA Gd ALQ 1249.0 BLQ 147.0 103.0 1499.0 GasA ... Y SBrkr 1619 167 0 1786 2.0 0.0 2 0 3 1 TA 7 Typ 2 Gd Attchd 1965.0 Fin 2.0 529.0 TA TA Y 670 0 0 0 0 0 NaN NaN Shed 700 8 2008 WD Normal 228950.0
336 337 20 RL 86.0 14157 Pave NaN IR1 HLS AllPub Corner Gtl StoneBr Norm Norm 1Fam 1Story 9 5 2005 2006 Hip CompShg VinylSd VinylSd Stone 200.0 Gd TA PConc Ex TA Gd GLQ 1249.0 Unf 0.0 673.0 1922.0 GasA ... Y SBrkr 1922 0 0 1922 1.0 0.0 2 0 3 1 Gd 8 Typ 1 Gd Attchd 2005.0 Fin 3.0 676.0 TA TA Y 178 51 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 377426.0
337 338 20 RL 70.0 9135 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2002 2003 Gable CompShg VinylSd VinylSd BrkFace 113.0 Gd TA PConc Gd TA Av GLQ 810.0 Unf 0.0 726.0 1536.0 GasA ... Y SBrkr 1536 0 0 1536 1.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2002.0 RFn 2.0 532.0 TA TA Y 192 74 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal 214000.0
338 339 20 RL 91.0 14145 Pave NaN Reg Lvl AllPub Corner Gtl NWAmes Norm Norm 1Fam 1Story 7 7 1984 1998 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd TA CBlock Gd TA Mn ALQ 213.0 Unf 0.0 995.0 1208.0 GasA ... Y SBrkr 1621 0 0 1621 1.0 0.0 2 0 3 1 Gd 8 Typ 0 NaN Attchd 1984.0 RFn 2.0 440.0 TA TA Y 108 45 0 0 0 0 NaN NaN Shed 400 5 2006 WD Normal 202500.0
339 340 20 RL 66.0 12400 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam 1Story 6 7 1958 1998 Hip CompShg Wd Sdng Wd Sdng BrkFace 176.0 TA TA CBlock TA Fa No Rec 585.0 Unf 0.0 630.0 1215.0 GasA ... Y FuseA 1215 0 0 1215 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1958.0 Unf 1.0 297.0 TA TA Y 0 0 0 0 234 0 NaN NaN NaN 0 6 2009 WD Normal 155000.0
340 341 60 RL 85.0 14191 Pave NaN Reg Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 2Story 8 5 2002 2002 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 967.0 967.0 GasA ... Y SBrkr 993 915 0 1908 0.0 0.0 2 1 4 1 Gd 9 Typ 0 NaN Attchd 2002.0 Fin 2.0 431.0 TA TA Y 135 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 202900.0
341 342 20 RH 60.0 8400 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Feedr Norm 1Fam 1Story 4 4 1950 1950 Gable CompShg Wd Sdng AsbShng None 0.0 Fa Fa CBlock TA Fa No Unf 0.0 Unf 0.0 721.0 721.0 GasA ... Y SBrkr 841 0 0 841 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN CarPort 1950.0 Unf 1.0 294.0 TA TA N 250 0 24 0 0 0 NaN NaN NaN 0 9 2009 WD Normal 82000.0
342 343 90 RL NaN 8544 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm Duplex 1Story 3 4 1949 1950 Gable CompShg Stucco Stucco BrkFace 340.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 Wall ... N FuseA 1040 0 0 1040 0.0 0.0 2 0 2 2 TA 6 Typ 0 NaN Detchd 1949.0 Unf 2.0 400.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 87500.0
343 344 120 RL 63.0 8849 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 9 5 2005 2005 Hip CompShg MetalSd MetalSd BrkFace 616.0 Ex TA PConc Ex TA No GLQ 28.0 Unf 0.0 1656.0 1684.0 GasA ... Y SBrkr 1684 0 0 1684 0.0 0.0 2 0 2 1 Ex 6 Typ 1 Ex Attchd 2005.0 RFn 2.0 564.0 TA TA Y 495 72 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 266000.0
344 345 160 RM 36.0 2592 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 2Story 5 3 1976 1976 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock Gd TA No Rec 129.0 BLQ 232.0 175.0 536.0 GasA ... Y SBrkr 536 576 0 1112 0.0 0.0 1 1 3 1 TA 4 Typ 0 NaN Attchd 1976.0 Unf 1.0 336.0 TA TA Y 182 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 85000.0
345 346 50 RL 65.0 6435 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide RRAn Norm 1Fam 1.5Fin 6 5 1939 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 972.0 972.0 GasA ... Y SBrkr 972 605 0 1577 0.0 0.0 1 0 3 1 Fa 6 Typ 1 Gd Detchd 1939.0 Unf 1.0 312.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal 140200.0
346 347 20 RL NaN 12772 Pave NaN IR1 Lvl AllPub CulDSac Gtl NAmes Norm Norm 1Fam 1Story 6 8 1960 1998 Hip CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA Mn BLQ 498.0 Unf 0.0 460.0 958.0 GasA ... Y SBrkr 958 0 0 958 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1960.0 RFn 1.0 301.0 TA TA Y 0 0 0 0 0 0 NaN NaN Gar2 15500 4 2007 WD Normal 151500.0
347 348 20 RL NaN 17600 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1960 1960 Gable CompShg Wd Sdng Wd Sdng BrkFace 30.0 TA TA CBlock TA TA No BLQ 1270.0 Unf 0.0 208.0 1478.0 GasA ... Y FuseA 1478 0 0 1478 1.0 0.0 2 0 3 1 TA 6 Typ 2 Gd Attchd 1960.0 Unf 2.0 498.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 12 2009 WD Normal 157500.0
348 349 160 RL 36.0 2448 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm Twnhs 2Story 7 5 2003 2004 Gable CompShg VinylSd Wd Shng Stone 106.0 Gd TA PConc Gd TA No GLQ 573.0 Unf 0.0 191.0 764.0 GasA ... Y SBrkr 764 862 0 1626 1.0 0.0 2 1 2 1 Gd 6 Typ 0 NaN BuiltIn 2003.0 RFn 2.0 474.0 TA TA Y 0 27 0 0 0 0 NaN NaN NaN 0 10 2008 WD Normal 154000.0
349 350 60 RL 56.0 20431 Pave NaN IR2 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2005 2006 Hip CompShg CemntBd CmentBd BrkFace 870.0 Ex TA PConc Ex TA No GLQ 1410.0 Unf 0.0 438.0 1848.0 GasA ... Y SBrkr 1848 880 0 2728 1.0 0.0 2 1 4 1 Ex 10 Typ 2 Ex Attchd 2006.0 Fin 3.0 706.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2006 New Partial 437154.0
350 351 120 RL 68.0 7820 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 9 5 2007 2007 Hip CompShg MetalSd MetalSd BrkFace 362.0 Ex TA PConc Ex TA No Unf 0.0 Unf 0.0 1869.0 1869.0 GasA ... Y SBrkr 1869 0 0 1869 0.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2007.0 RFn 2.0 617.0 TA TA Y 210 54 0 0 0 0 NaN NaN NaN 0 12 2007 New Partial 318061.0
351 352 120 RL NaN 5271 Pave NaN IR1 Low AllPub Inside Mod ClearCr Norm Norm 1Fam 1Story 7 5 1986 1986 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc Gd TA Gd GLQ 1082.0 Unf 0.0 371.0 1453.0 GasA ... Y SBrkr 1453 0 0 1453 1.0 0.0 1 1 2 1 Gd 6 Typ 1 TA Attchd 1986.0 RFn 2.0 445.0 TA TA Y 0 80 0 0 184 0 NaN NaN NaN 0 12 2006 WD Abnorml 190000.0
352 353 50 RL 60.0 9084 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Artery Norm 1Fam 1.5Fin 5 6 1941 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA Fa Mn LwQ 236.0 Rec 380.0 0.0 616.0 GasA ... N SBrkr 616 495 0 1111 0.0 1.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1941.0 Unf 1.0 200.0 TA Fa Y 48 0 0 0 0 0 NaN NaN NaN 0 3 2008 ConLw Normal 95000.0
353 354 30 RM 60.0 8520 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 6 8 1928 2003 Gable CompShg VinylSd VinylSd None 0.0 TA Gd BrkTil TA TA No Unf 0.0 Unf 0.0 624.0 624.0 GasA ... Y SBrkr 720 0 0 720 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 2005.0 Unf 2.0 484.0 TA TA Y 106 0 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 105900.0
354 355 50 RL 60.0 8400 Pave NaN Reg Bnk AllPub Inside Gtl SWISU Norm Norm 1Fam 1.5Fin 6 5 1940 2000 Gable CompShg Wd Sdng MetalSd None 0.0 TA TA CBlock TA TA No LwQ 388.0 Unf 0.0 552.0 940.0 GasA ... Y SBrkr 1192 403 0 1595 0.0 0.0 1 0 2 1 TA 6 Typ 2 Gd Attchd 1940.0 Unf 1.0 240.0 TA TA Y 0 0 108 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 140000.0
355 356 20 RL 105.0 11249 Pave NaN IR2 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 6 5 1995 1995 Gable CompShg VinylSd VinylSd None 0.0 Gd Gd PConc Gd Gd No ALQ 334.0 BLQ 544.0 322.0 1200.0 GasA ... Y SBrkr 1200 0 0 1200 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1995.0 RFn 2.0 521.0 TA TA Y 0 26 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 177500.0
356 357 20 RL NaN 9248 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 1Story 6 6 1992 1992 Gable CompShg HdBoard HdBoard BrkFace 106.0 TA TA PConc Gd TA No GLQ 560.0 Unf 0.0 598.0 1158.0 GasA ... Y SBrkr 1167 0 0 1167 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1992.0 RFn 2.0 400.0 TA TA Y 120 26 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 173000.0
357 358 120 RM 44.0 4224 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 1Story 5 5 1976 1976 Gable CompShg CemntBd CmentBd None 0.0 TA TA PConc Gd TA No ALQ 874.0 Unf 0.0 268.0 1142.0 GasA ... Y SBrkr 1142 0 0 1142 1.0 0.0 1 1 3 1 TA 6 Typ 1 Po Attchd 1976.0 Fin 2.0 528.0 TA TA Y 536 90 0 0 0 0 NaN MnPrv NaN 0 8 2007 WD Normal 134000.0
358 359 80 RL 92.0 6930 Pave NaN IR1 Lvl AllPub Inside Gtl ClearCr Norm Norm 1Fam SLvl 5 4 1958 1958 Hip CompShg Wd Sdng ImStucc BrkFace 120.0 TA TA CBlock TA TA Av BLQ 300.0 Rec 294.0 468.0 1062.0 GasA ... Y FuseF 1352 0 0 1352 0.0 1.0 1 0 3 1 Gd 6 Min2 0 NaN BuiltIn 1958.0 Unf 1.0 288.0 TA TA Y 168 0 294 0 0 0 NaN NaN NaN 0 7 2006 WD Abnorml 130000.0
359 360 60 RL 78.0 12011 Pave NaN IR1 Lvl AllPub CulDSac Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1998 1998 Gable CompShg VinylSd VinylSd BrkFace 530.0 Gd TA PConc Gd TA Av GLQ 956.0 Unf 0.0 130.0 1086.0 GasA ... Y SBrkr 1086 838 0 1924 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1998.0 RFn 2.0 592.0 TA TA Y 208 75 0 0 374 0 NaN NaN NaN 0 6 2006 WD Normal 280000.0
360 361 85 RL NaN 7540 Pave NaN IR1 Lvl AllPub CulDSac Gtl Mitchel Norm Norm 1Fam SFoyer 6 6 1978 1978 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock Gd TA Av GLQ 773.0 Unf 0.0 115.0 888.0 GasA ... Y SBrkr 912 0 0 912 1.0 0.0 1 0 2 1 TA 5 Typ 1 TA Attchd 1978.0 RFn 2.0 470.0 TA TA Y 0 0 0 0 192 0 NaN MnPrv NaN 0 6 2007 WD Normal 156000.0
361 362 50 RL NaN 9144 Pave Pave Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 5 1940 1982 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 399.0 Unf 0.0 484.0 883.0 GasA ... Y SBrkr 988 517 0 1505 1.0 0.0 1 0 3 1 TA 8 Typ 0 NaN Detchd 1940.0 Unf 1.0 240.0 TA TA N 0 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 145000.0
362 363 85 RL 64.0 7301 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam SFoyer 7 5 2003 2003 Gable CompShg HdBoard HdBoard BrkFace 500.0 Gd TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 495 1427 0 1922 0.0 0.0 3 0 4 1 Gd 7 Typ 1 Ex BuiltIn 2003.0 RFn 2.0 672.0 TA TA Y 0 0 177 0 0 0 NaN NaN NaN 0 7 2009 ConLD Normal 198500.0
363 364 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 8 1972 2007 Gable CompShg HdBoard HdBoard BrkFace 510.0 TA TA CBlock TA TA No ALQ 162.0 Unf 0.0 321.0 483.0 GasA ... Y SBrkr 483 504 0 987 0.0 0.0 1 1 2 1 Gd 5 Typ 0 NaN Detchd 1972.0 Unf 1.0 264.0 TA TA Y 250 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 118000.0
364 365 60 RL NaN 18800 Pave NaN IR1 Lvl AllPub FR2 Gtl NWAmes Norm Norm 1Fam 2Story 6 5 1976 1976 Gable CompShg HdBoard HdBoard BrkFace 120.0 TA TA PConc Gd TA Mn GLQ 712.0 Unf 0.0 84.0 796.0 GasA ... Y SBrkr 790 784 0 1574 1.0 0.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1976.0 Fin 2.0 566.0 TA TA Y 306 111 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 190000.0
365 366 70 RM 59.0 10690 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 2Story 5 7 1920 1997 Hip CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA Fa No Rec 456.0 Unf 0.0 216.0 672.0 GasA ... Y FuseA 672 672 0 1344 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1964.0 Unf 1.0 468.0 TA Fa Y 0 128 218 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 147000.0
366 367 20 RL NaN 9500 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1963 1963 Gable CompShg Plywood Plywood BrkFace 247.0 TA TA CBlock Gd TA No BLQ 609.0 Unf 0.0 785.0 1394.0 GasA ... Y SBrkr 1394 0 0 1394 1.0 0.0 1 1 3 1 TA 6 Typ 2 Gd Attchd 1963.0 RFn 2.0 514.0 TA TA Y 0 76 0 0 185 0 NaN NaN NaN 0 7 2009 WD Normal 159000.0
367 368 80 RL 101.0 9150 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam SLvl 6 5 1962 1962 Gable Tar&Grv Plywood Plywood BrkFace 305.0 TA TA CBlock Gd TA Gd GLQ 371.0 Unf 0.0 728.0 1099.0 GasA ... Y SBrkr 1431 0 0 1431 0.0 1.0 1 0 3 1 TA 6 Typ 1 Gd Basment 1962.0 RFn 1.0 296.0 TA TA Y 64 110 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal 165000.0
368 369 20 RL 78.0 7800 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1954 1954 Gable CompShg HdBoard HdBoard BrkFace 200.0 TA TA PConc TA TA No LwQ 540.0 Unf 0.0 728.0 1268.0 GasA ... Y SBrkr 1268 0 0 1268 0.0 0.0 1 0 2 1 TA 7 Typ 1 Gd Attchd 1954.0 Fin 1.0 244.0 TA TA Y 0 98 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal 132000.0
369 370 20 RL NaN 9830 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 7 1959 2006 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd CBlock TA TA No ALQ 72.0 Rec 258.0 733.0 1063.0 GasA ... Y SBrkr 1287 0 0 1287 1.0 0.0 1 0 3 1 Gd 7 Typ 1 Gd Detchd 1997.0 Fin 2.0 576.0 TA TA Y 364 17 0 0 182 0 NaN NaN NaN 0 3 2010 WD Normal 162000.0
370 371 60 RL NaN 8121 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2000 2000 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 953.0 953.0 GasA ... Y SBrkr 953 711 0 1664 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 2000.0 RFn 2.0 460.0 TA TA Y 100 40 0 0 0 0 NaN NaN NaN 0 1 2006 WD Normal 172400.0
371 372 50 RL 80.0 17120 Pave NaN Reg Lvl AllPub Inside Gtl ClearCr Feedr Norm 1Fam 1.5Fin 4 4 1959 1959 Gable CompShg WdShing Plywood None 0.0 TA TA CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1120 468 0 1588 0.0 0.0 2 0 4 1 TA 7 Min2 1 Gd Detchd 1991.0 Fin 2.0 680.0 TA TA N 0 59 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 134432.0
372 373 120 RL 50.0 7175 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm TwnhsE 1Story 6 5 1984 1984 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA No ALQ 623.0 LwQ 121.0 0.0 744.0 GasA ... Y SBrkr 752 0 0 752 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1984.0 Unf 1.0 264.0 TA TA Y 353 0 0 0 90 0 NaN MnPrv NaN 0 2 2010 WD Normal 125000.0
373 374 20 RL 79.0 10634 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1953 1953 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No BLQ 428.0 LwQ 180.0 0.0 608.0 GasA ... Y SBrkr 1319 0 0 1319 1.0 0.0 1 0 3 1 TA 5 Min2 0 NaN Attchd 1953.0 Unf 1.0 270.0 TA TA Y 66 0 0 0 0 0 NaN GdWo NaN 0 11 2009 WD Normal 123000.0
374 375 60 RL 65.0 8200 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2003 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 847.0 847.0 GasA ... Y SBrkr 847 1081 0 1928 0.0 0.0 2 1 4 1 Gd 8 Typ 1 Gd BuiltIn 2003.0 Fin 2.0 434.0 TA TA Y 100 48 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 219500.0
375 376 30 RL NaN 10020 Pave NaN IR1 Low AllPub Inside Sev Edwards Norm Norm 1Fam 1Story 1 1 1922 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 Fa Fa BrkTil Fa Po Gd BLQ 350.0 Unf 0.0 333.0 683.0 GasA ... N FuseA 904 0 0 904 1.0 0.0 0 1 1 1 Fa 4 Maj1 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal 61000.0
376 377 85 RL 57.0 8846 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam SFoyer 5 5 1996 1996 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 298.0 Unf 0.0 572.0 870.0 GasA ... Y SBrkr 914 0 0 914 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1998.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 148000.0
377 378 60 FV 102.0 11143 Pave NaN IR1 Lvl AllPub Corner Gtl Somerst Norm Norm 1Fam 2Story 8 5 2004 2005 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1580.0 1580.0 GasA ... Y SBrkr 1580 886 0 2466 0.0 0.0 3 0 4 1 Gd 8 Typ 1 Gd Attchd 2004.0 RFn 2.0 610.0 TA TA Y 159 214 0 0 0 0 NaN NaN NaN 0 12 2007 WD Normal 340000.0
378 379 20 RL 88.0 11394 Pave NaN Reg Lvl AllPub Corner Gtl StoneBr Norm Norm 1Fam 1Story 9 2 2010 2010 Hip CompShg VinylSd VinylSd Stone 350.0 Gd TA PConc Ex TA Av GLQ 1445.0 Unf 0.0 411.0 1856.0 GasA ... Y SBrkr 1856 0 0 1856 1.0 0.0 1 1 1 1 Ex 8 Typ 1 Ex Attchd 2010.0 Fin 3.0 834.0 TA TA Y 113 0 0 0 0 0 NaN NaN NaN 0 6 2010 New Partial 394432.0
379 380 60 RL 60.0 8123 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert RRAn Norm 1Fam 2Story 6 5 2000 2000 Gable CompShg VinylSd VinylSd BrkFace 16.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 982.0 982.0 GasA ... Y SBrkr 1007 793 0 1800 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 2000.0 Fin 2.0 463.0 TA TA Y 100 63 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 179000.0
380 381 50 RL 50.0 5000 Pave Pave Reg Lvl AllPub Inside Gtl SWISU Norm Norm 1Fam 1.5Fin 5 6 1924 1950 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA BrkTil TA TA No LwQ 218.0 Unf 0.0 808.0 1026.0 GasA ... Y SBrkr 1026 665 0 1691 0.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Detchd 1924.0 Unf 1.0 308.0 TA TA Y 0 0 242 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 127000.0
381 382 20 FV 60.0 7200 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd Gd No Unf 0.0 Unf 0.0 1293.0 1293.0 GasA ... Y SBrkr 1301 0 0 1301 1.0 0.0 2 0 2 1 Gd 5 Typ 1 Gd Attchd 2006.0 RFn 2.0 572.0 TA TA Y 216 121 0 0 0 0 NaN NaN NaN 0 8 2006 New Partial 187750.0
382 383 60 RL 79.0 9245 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 939.0 939.0 GasA ... Y SBrkr 939 858 0 1797 0.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 2006.0 RFn 2.0 639.0 TA TA Y 144 53 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal 213500.0
383 384 45 RH 60.0 9000 Pave NaN Reg Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam 1.5Unf 6 3 1928 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Fa Fa No Unf 0.0 Unf 0.0 784.0 784.0 GasA ... N FuseA 784 0 0 784 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1950.0 Unf 2.0 360.0 Fa Fa N 0 0 91 0 0 0 NaN NaN NaN 0 10 2009 WD Normal 76000.0
384 385 60 RL NaN 53107 Pave NaN IR2 Low AllPub Corner Mod ClearCr Feedr Norm 1Fam 2Story 6 5 1992 1992 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA Av GLQ 985.0 Unf 0.0 595.0 1580.0 GasA ... Y SBrkr 1079 874 0 1953 1.0 0.0 2 1 3 1 Gd 9 Typ 2 Fa Attchd 1992.0 Fin 2.0 501.0 TA TA Y 216 231 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 240000.0
385 386 120 RL 43.0 3182 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 8 5 2004 2005 Gable CompShg VinylSd VinylSd BrkFace 16.0 Gd TA PConc Gd TA No GLQ 24.0 Unf 0.0 1232.0 1256.0 GasA ... Y SBrkr 1269 0 0 1269 0.0 0.0 2 0 2 1 Gd 6 Typ 1 TA Attchd 2004.0 Fin 2.0 430.0 TA TA Y 146 20 0 0 144 0 NaN NaN NaN 0 4 2010 WD Normal 192000.0
386 387 50 RL 58.0 8410 Pave NaN Reg Lvl AllPub FR2 Gtl Edwards Feedr Norm 1Fam 1.5Fin 5 3 1910 1996 Gambrel CompShg Wd Sdng VinylSd None 0.0 TA Fa PConc TA TA No Unf 0.0 Unf 0.0 658.0 658.0 GasA ... Y SBrkr 658 526 0 1184 0.0 0.0 1 0 5 1 TA 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 151 0 0 0 0 NaN NaN NaN 0 5 2006 WD AdjLand 81000.0
387 388 80 RL 72.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam SLvl 6 6 1976 1976 Hip CompShg MetalSd MetalSd BrkFace 255.0 TA TA CBlock TA TA Av ALQ 631.0 Unf 0.0 410.0 1041.0 GasA ... Y SBrkr 1125 0 0 1125 1.0 0.0 1 0 3 1 TA 6 Typ 1 Fa Detchd 1977.0 Unf 1.0 352.0 TA TA Y 296 0 0 0 0 0 NaN GdWo NaN 0 10 2009 WD Abnorml 125000.0
388 389 20 RL 93.0 9382 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 1Story 7 5 1999 2000 Gable CompShg VinylSd VinylSd BrkFace 125.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1468.0 1468.0 GasA ... Y SBrkr 1479 0 0 1479 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1999.0 RFn 2.0 577.0 TA TA Y 120 25 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 191000.0
389 390 60 RL 96.0 12474 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 10 5 2007 2008 Gable CompShg VinylSd VinylSd Stone 272.0 Ex TA PConc Ex TA Av GLQ 1280.0 Unf 0.0 402.0 1682.0 GasA ... Y SBrkr 1742 590 0 2332 1.0 0.0 2 1 3 1 Ex 9 Typ 1 Ex BuiltIn 2008.0 Fin 3.0 846.0 TA TA Y 196 134 0 0 0 0 NaN NaN NaN 0 8 2008 New Partial 426000.0
390 391 50 RL 50.0 8405 Pave Grvl Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 5 8 1900 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA Gd No Rec 241.0 BLQ 391.0 229.0 861.0 GasA ... Y SBrkr 961 406 0 1367 1.0 0.0 1 0 4 1 TA 7 Typ 0 NaN Detchd 1978.0 Unf 1.0 384.0 TA TA Y 0 130 112 0 0 0 NaN MnPrv NaN 0 4 2008 WD Normal 119000.0
391 392 60 RL 71.0 12209 Pave NaN IR1 Lvl AllPub CulDSac Gtl Mitchel Norm Norm 1Fam 2Story 6 5 2001 2002 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Ex TA No ALQ 690.0 Unf 0.0 114.0 804.0 GasA ... Y SBrkr 804 1157 0 1961 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA BuiltIn 2001.0 Fin 2.0 560.0 TA TA Y 125 192 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 215000.0
392 393 20 RL NaN 8339 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1959 1959 Gable CompShg MetalSd MetalSd None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 882 0 0 882 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1959.0 RFn 1.0 294.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv Shed 1200 7 2007 WD Normal 106500.0
393 394 30 RL NaN 7446 Pave NaN Reg Lvl AllPub Corner Gtl BrkSide Feedr Norm 1Fam 1Story 4 5 1941 1950 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA TA No Rec 266.0 Unf 0.0 522.0 788.0 GasA ... Y FuseA 788 0 0 788 0.0 0.0 1 0 2 1 TA 4 Typ 2 TA NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN GdWo NaN 0 4 2006 WD Abnorml 100000.0
394 395 50 RL 60.0 10134 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 6 1940 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 735.0 735.0 GasA ... Y FuseA 735 299 0 1034 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1940.0 Unf 1.0 240.0 TA TA Y 0 39 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 109000.0
395 396 20 RL 68.0 9571 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 6 1956 1956 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Av BLQ 739.0 Unf 0.0 405.0 1144.0 GasA ... Y SBrkr 1144 0 0 1144 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1956.0 Unf 1.0 596.0 TA TA Y 44 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 129000.0
396 397 20 RL 60.0 7200 Pave NaN Reg Low AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 5 1972 1972 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA Av Rec 777.0 Unf 0.0 117.0 894.0 GasA ... Y SBrkr 894 0 0 894 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1985.0 RFn 2.0 600.0 TA TA Y 215 0 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal 123000.0
397 398 60 RL 69.0 7590 Pave NaN Reg Lvl AllPub Inside Gtl NAmes PosN Norm 1Fam 2Story 5 5 1962 1962 Gable CompShg VinylSd VinylSd BrkFace 288.0 TA TA CBlock TA TA No ALQ 540.0 Unf 0.0 324.0 864.0 GasA ... Y SBrkr 876 936 0 1812 0.0 0.0 2 0 4 1 TA 8 Typ 1 TA Attchd 1962.0 RFn 1.0 264.0 TA TA Y 0 168 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 169500.0
398 399 30 RM 60.0 8967 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Norm Norm 1Fam 1Story 5 2 1920 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Fa BrkTil Fa Po No Unf 0.0 Unf 0.0 961.0 961.0 GasA ... Y Mix 1077 0 0 1077 0.0 0.0 1 0 2 1 TA 6 Maj2 0 NaN Detchd 1920.0 Unf 1.0 338.0 Po Po N 0 0 0 0 0 0 NaN NaN NaN 0 11 2007 WD Abnorml 67000.0
399 400 60 FV 65.0 8125 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 2006 2007 Gable CompShg CemntBd CmentBd Stone 100.0 Gd TA PConc Gd TA No GLQ 812.0 Unf 0.0 280.0 1092.0 GasA ... Y SBrkr 1112 438 0 1550 1.0 0.0 2 0 2 1 Gd 7 Typ 0 NaN Attchd 2007.0 Fin 2.0 438.0 TA TA Y 0 168 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal 241000.0
400 401 120 RL 38.0 14963 Pave NaN IR2 Lvl AllPub Inside Gtl Veenker Norm Norm TwnhsE 1Story 8 5 1996 1996 Gable CompShg BrkFace BrkFace None 0.0 Gd TA PConc Gd TA No GLQ 786.0 Unf 0.0 474.0 1260.0 GasA ... Y SBrkr 1288 0 0 1288 1.0 0.0 1 1 1 1 Ex 4 Typ 2 Gd Attchd 1996.0 Fin 2.0 500.0 TA TA Y 120 30 0 0 224 0 NaN NaN NaN 0 12 2008 WD Normal 245500.0
401 402 20 RL 65.0 8767 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 24.0 Unf 0.0 1286.0 1310.0 GasA ... Y SBrkr 1310 0 0 1310 0.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2005.0 Fin 2.0 400.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial 164990.0
402 403 30 RL 60.0 10200 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 8 1940 1997 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 672.0 672.0 GasA ... Y SBrkr 672 0 0 672 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1940.0 Unf 1.0 240.0 TA TA N 168 0 0 0 0 0 NaN GdPrv NaN 0 8 2008 WD Normal 108000.0
403 404 60 RL 93.0 12090 Pave NaN Reg Lvl AllPub Corner Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1998 1998 Hip CompShg VinylSd VinylSd BrkFace 650.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1141.0 1141.0 GasA ... Y SBrkr 1165 1098 0 2263 0.0 0.0 2 1 4 1 Gd 10 Typ 1 TA BuiltIn 1998.0 Fin 2.0 420.0 TA TA Y 144 123 0 0 0 0 NaN NaN NaN 0 7 2006 WD Abnorml 258000.0
404 405 60 RL NaN 10364 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1995 1996 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 806.0 806.0 GasA ... Y SBrkr 806 766 0 1572 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA BuiltIn 1995.0 Fin 2.0 373.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 168000.0
405 406 20 RL NaN 9991 Pave NaN IR1 Lvl AllPub Corner Gtl Sawyer Feedr Norm 1Fam 1Story 4 4 1976 1993 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No BLQ 1116.0 Unf 0.0 165.0 1281.0 GasA ... Y SBrkr 1620 0 0 1620 1.0 0.0 2 0 3 1 TA 8 Min1 1 TA Attchd 1993.0 Unf 2.0 490.0 TA TA Y 120 78 0 0 0 0 NaN GdWo NaN 0 6 2009 WD Normal 150000.0
406 407 50 RL 51.0 10480 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Norm Norm 1Fam 1.5Fin 6 5 1936 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 1064.0 1064.0 GasA ... Y FuseA 1166 0 473 1639 0.0 0.0 1 0 3 1 TA 6 Maj2 0 NaN Detchd 1936.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal 115000.0
407 408 70 RL 63.0 15576 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 6 7 1915 1976 Gable CompShg Wd Sdng Plywood None 0.0 TA TA BrkTil Gd TA No Unf 0.0 Unf 0.0 840.0 840.0 GasA ... Y SBrkr 840 840 0 1680 0.0 0.0 2 0 4 1 TA 8 Typ 0 NaN Attchd 1960.0 Unf 1.0 308.0 TA TA Y 0 0 160 0 0 0 NaN NaN NaN 0 3 2008 WD Normal 177000.0
408 409 60 RL 109.0 14154 Pave NaN Reg Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 2Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd BrkFace 350.0 Gd TA PConc Ex Gd No Unf 0.0 Unf 0.0 1063.0 1063.0 GasA ... Y SBrkr 1071 1101 0 2172 0.0 0.0 2 1 3 1 Gd 9 Typ 1 Gd Attchd 2006.0 RFn 3.0 947.0 TA TA Y 192 62 0 0 0 0 NaN NaN NaN 0 8 2007 New Partial 280000.0
409 410 60 FV 85.0 10800 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 2007 2008 Gable CompShg VinylSd VinylSd Stone 100.0 Gd TA PConc Ex TA No GLQ 789.0 Unf 0.0 245.0 1034.0 GasA ... Y SBrkr 1050 1028 0 2078 1.0 0.0 2 1 3 1 Ex 8 Typ 1 Gd Attchd 2008.0 Fin 3.0 836.0 TA TA Y 0 102 0 0 0 0 NaN NaN NaN 0 4 2008 New Partial 339750.0
410 411 20 RL 68.0 9571 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 3 1958 1958 Gable CompShg BrkComm Brk Cmn None 0.0 TA Fa CBlock TA Fa No Unf 0.0 Unf 0.0 1276.0 1276.0 GasA ... Y FuseA 1276 0 0 1276 0.0 0.0 1 0 3 1 TA 5 Mod 0 NaN Attchd 1958.0 Unf 1.0 350.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2009 COD Abnorml 60000.0
411 412 190 RL 100.0 34650 Pave NaN Reg Bnk AllPub Inside Gtl Gilbert Norm Norm 2fmCon 1Story 5 5 1955 1955 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Mn Rec 1056.0 Unf 0.0 0.0 1056.0 GasA ... N SBrkr 1056 0 0 1056 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1955.0 Fin 2.0 572.0 TA TA Y 264 0 0 0 0 0 NaN NaN NaN 0 1 2006 WD Normal 145000.0
412 413 20 FV NaN 4403 Pave NaN IR2 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2009 2009 Gable CompShg MetalSd MetalSd Stone 432.0 Ex TA PConc Ex TA Av GLQ 578.0 Unf 0.0 892.0 1470.0 GasA ... Y SBrkr 1478 0 0 1478 1.0 0.0 2 1 2 1 Gd 7 Typ 1 Gd Attchd 2009.0 Fin 2.0 484.0 TA TA Y 0 144 0 0 0 0 NaN NaN NaN 0 6 2010 New Partial 222000.0
413 414 30 RM 56.0 8960 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1Story 5 6 1927 1950 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1008.0 1008.0 GasA ... Y FuseA 1028 0 0 1028 0.0 0.0 1 0 2 1 TA 5 Typ 1 Gd Detchd 1927.0 Unf 2.0 360.0 TA TA Y 0 0 130 0 0 0 NaN NaN NaN 0 3 2010 WD Normal 115000.0
414 415 60 RL 59.0 11228 Pave NaN IR2 Lvl AllPub CulDSac Gtl SawyerW Norm Norm 1Fam 2Story 7 5 1993 1993 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No BLQ 50.0 GLQ 531.0 499.0 1080.0 GasA ... Y SBrkr 1080 1017 0 2097 0.0 1.0 2 1 3 1 Gd 9 Typ 1 TA Attchd 1993.0 Unf 3.0 678.0 TA TA Y 196 187 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal 228000.0
415 416 20 RL 73.0 8899 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 1Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 24.0 Unf 0.0 1316.0 1340.0 GasA ... Y SBrkr 1340 0 0 1340 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2007.0 Fin 2.0 396.0 TA TA Y 100 30 0 0 0 0 NaN NaN NaN 0 8 2007 New Partial 181134.0
416 417 60 RL 74.0 7844 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 2Story 6 7 1978 1978 Hip CompShg HdBoard HdBoard BrkFace 203.0 TA TA CBlock TA TA No ALQ 209.0 Unf 0.0 463.0 672.0 GasA ... Y SBrkr 672 728 0 1400 0.0 0.0 1 1 3 1 TA 6 Typ 1 TA Attchd 1978.0 Fin 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal 149500.0
417 418 70 RL 86.0 22420 Pave NaN IR1 Lvl AllPub Inside Gtl Crawfor Feedr Norm 1Fam 2Story 6 6 1918 1950 Hip CompShg Wd Sdng Stucco None 0.0 TA TA BrkTil Gd TA No BLQ 1128.0 Unf 0.0 242.0 1370.0 GasW ... N FuseA 1370 1254 0 2624 1.0 0.0 2 1 4 1 TA 10 Typ 1 Gd Detchd 1918.0 Unf 3.0 864.0 TA TA N 0 0 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal 239000.0
418 419 50 RL 60.0 8160 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 5 6 1940 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No ALQ 312.0 Unf 0.0 444.0 756.0 GasA ... N FuseF 756 378 0 1134 1.0 0.0 1 1 3 1 TA 7 Typ 0 NaN Detchd 1940.0 Unf 1.0 240.0 TA TA P 0 0 0 0 0 0 NaN NaN NaN 0 4 2007 WD AdjLand 126000.0
419 420 20 RL 65.0 8450 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1968 1968 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No BLQ 775.0 Unf 0.0 281.0 1056.0 GasA ... Y SBrkr 1056 0 0 1056 1.0 0.0 1 0 3 1 TA 6 Typ 1 Fa Attchd 1968.0 Unf 1.0 304.0 TA TA Y 0 85 184 0 0 0 NaN NaN NaN 0 7 2010 WD Normal 142000.0
420 421 90 RM 78.0 7060 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm Duplex SFoyer 7 5 1997 1998 Gable CompShg VinylSd VinylSd BrkFace 200.0 TA Gd PConc Gd Gd Gd GLQ 1309.0 Unf 0.0 35.0 1344.0 GasA ... Y SBrkr 1344 0 0 1344 2.0 0.0 2 0 2 2 TA 8 Typ 0 NaN Attchd 1997.0 Fin 4.0 784.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2008 WD Alloca 206300.0
421 422 20 RL NaN 16635 Pave NaN IR1 Lvl AllPub FR2 Gtl NWAmes Norm Norm 1Fam 1Story 6 7 1977 2000 Gable CompShg CemntBd CmentBd Stone 126.0 Gd TA CBlock Gd TA No ALQ 1246.0 Unf 0.0 356.0 1602.0 GasA ... Y SBrkr 1602 0 0 1602 0.0 1.0 2 0 3 1 Gd 8 Typ 1 TA Attchd 1977.0 Fin 2.0 529.0 TA TA Y 240 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 215000.0
422 423 20 RL 100.0 21750 Pave NaN Reg HLS AllPub Inside Mod Mitchel Artery Norm 1Fam 1Story 5 5 1954 1954 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 988.0 988.0 GasA ... Y FuseA 988 0 0 988 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1954.0 RFn 2.0 520.0 TA TA N 0 0 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal 113000.0
423 424 60 RL 80.0 9200 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1998 1998 Gable CompShg VinylSd VinylSd BrkFace 473.0 Gd TA PConc Gd TA No GLQ 986.0 Unf 0.0 484.0 1470.0 GasA ... Y SBrkr 1470 1160 0 2630 1.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Attchd 1998.0 Fin 3.0 696.0 TA TA Y 0 66 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 315000.0
424 425 20 RL 72.0 9000 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1956 1956 Gable CompShg Wd Sdng Wd Sdng BrkFace 74.0 TA TA CBlock Gd TA No LwQ 616.0 Unf 0.0 580.0 1196.0 GasA ... Y FuseA 1196 0 0 1196 1.0 0.0 1 0 2 1 TA 6 Typ 1 Gd Attchd 1956.0 RFn 1.0 297.0 TA TA Y 0 44 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 139000.0
425 426 60 RM 60.0 3378 Pave Grvl Reg HLS AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 7 8 1946 1992 Gable CompShg HdBoard HdBoard None 0.0 TA Gd CBlock TA TA No Unf 0.0 Unf 0.0 651.0 651.0 GasA ... Y SBrkr 707 682 0 1389 0.0 0.0 1 1 3 1 TA 6 Typ 2 Gd Detchd 1947.0 Unf 1.0 240.0 TA TA P 0 0 126 0 0 0 NaN NaN NaN 0 9 2009 WD Normal 135000.0
426 427 80 RL NaN 12800 Pave NaN Reg Low AllPub Inside Mod SawyerW Norm Norm 1Fam SLvl 7 5 1989 1989 Gable CompShg Wd Sdng Wd Sdng BrkFace 145.0 Gd TA PConc Gd TA Gd GLQ 1518.0 Unf 0.0 0.0 1518.0 GasA ... Y SBrkr 1644 0 0 1644 1.0 1.0 2 0 2 1 Gd 5 Typ 1 TA Attchd 1989.0 Fin 2.0 569.0 TA TA Y 80 0 0 0 396 0 NaN NaN NaN 0 8 2009 WD Normal 275000.0
427 428 20 RL 77.0 8593 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 4 6 1957 1957 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 288.0 Unf 0.0 619.0 907.0 GasA ... Y SBrkr 907 0 0 907 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1964.0 Unf 1.0 352.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 109008.0
428 429 20 RL 64.0 6762 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd BrkFace 108.0 Gd TA PConc Gd TA No GLQ 664.0 Unf 0.0 544.0 1208.0 GasA ... Y SBrkr 1208 0 0 1208 1.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 2007.0 RFn 2.0 628.0 TA TA Y 105 54 0 0 0 0 NaN NaN NaN 0 9 2007 New Partial 195400.0
429 430 20 RL 130.0 11457 Pave NaN IR1 Lvl AllPub Corner Gtl Timber Norm Norm 1Fam 1Story 6 5 1988 1988 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA Mn GLQ 1005.0 Unf 0.0 387.0 1392.0 GasA ... Y SBrkr 1412 0 0 1412 1.0 0.0 2 0 3 1 Gd 6 Typ 1 TA Attchd 1988.0 Unf 2.0 576.0 TA TA Y 0 0 169 0 0 0 NaN NaN NaN 0 3 2009 WD Normal 175000.0
430 431 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 5 1971 1971 Gable CompShg HdBoard HdBoard BrkFace 232.0 TA TA CBlock TA TA No ALQ 387.0 Unf 0.0 96.0 483.0 GasA ... Y SBrkr 483 504 0 987 0.0 0.0 1 1 2 1 TA 4 Typ 0 NaN Detchd 1971.0 Unf 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2008 COD Abnorml 85400.0
431 432 50 RM 60.0 5586 Pave NaN IR1 Bnk AllPub Inside Gtl OldTown Feedr Norm 1Fam 1.5Fin 6 7 1920 1998 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 901.0 901.0 GasA ... Y SBrkr 1088 110 0 1198 0.0 0.0 1 0 4 1 TA 7 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 98 0 0 0 0 NaN MnPrv NaN 0 9 2008 ConLD Abnorml 79900.0
432 433 160 RM 24.0 1920 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm TwnhsE 2Story 5 5 1971 1971 Gable CompShg HdBoard HdBoard BrkFace 376.0 TA TA CBlock TA TA No ALQ 471.0 Unf 0.0 294.0 765.0 GasA ... Y SBrkr 765 600 0 1365 1.0 0.0 1 1 2 1 TA 6 Min1 0 NaN Detchd 1971.0 Unf 2.0 440.0 TA TA Y 240 36 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 122500.0
433 434 60 RL 100.0 10839 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1997 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 926.0 926.0 GasA ... Y SBrkr 926 678 0 1604 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1997.0 Fin 2.0 470.0 TA TA Y 0 36 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 181000.0
434 435 180 RM 21.0 1890 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs SFoyer 4 7 1972 1972 Gable CompShg CemntBd CmentBd None 0.0 TA Gd CBlock Gd TA Av ALQ 495.0 Unf 0.0 135.0 630.0 GasA ... Y SBrkr 630 0 0 630 1.0 0.0 1 0 1 1 TA 3 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 88 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 81000.0
435 436 60 RL 43.0 10667 Pave NaN IR2 Lvl AllPub CulDSac Gtl CollgCr PosN Norm 1Fam 2Story 7 6 1996 1996 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 385.0 ALQ 344.0 70.0 799.0 GasA ... Y SBrkr 827 834 0 1661 1.0 0.0 2 1 3 1 Gd 6 Typ 1 TA Attchd 1996.0 RFn 2.0 550.0 TA TA Y 158 61 0 0 0 0 NaN NaN NaN 0 4 2009 ConLw Normal 212000.0
436 437 50 RM 40.0 4400 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 6 8 1920 1950 Gable CompShg Stucco Stucco None 0.0 TA TA BrkTil Fa TA No Unf 0.0 Unf 0.0 648.0 648.0 GasA ... Y FuseA 734 384 0 1118 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1990.0 Unf 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal 116000.0
437 438 45 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Unf 6 7 1926 2004 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd TA PConc TA TA No Unf 0.0 Unf 0.0 884.0 884.0 GasA ... Y SBrkr 904 0 0 904 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1926.0 Unf 1.0 180.0 TA TA Y 0 0 105 0 0 0 NaN NaN NaN 0 1 2009 WD Normal 119000.0
438 439 30 RL 40.0 4280 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 5 6 1913 2002 Gable CompShg WdShing Stucco None 0.0 TA TA PConc TA TA No LwQ 365.0 Unf 0.0 75.0 440.0 GasA ... N SBrkr 694 0 0 694 0.0 0.0 1 0 2 1 Gd 4 Typ 1 Gd Detchd 1990.0 Unf 1.0 352.0 Gd TA P 0 0 34 0 0 0 NaN MnPrv NaN 0 3 2007 WD Normal 90350.0
439 440 50 RL 67.0 12354 Pave Grvl Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 1.5Fin 6 8 1920 2000 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA Fa Mn Unf 0.0 Unf 0.0 684.0 684.0 GasA ... Y SBrkr 684 512 0 1196 0.0 0.0 1 0 3 1 Gd 7 Typ 0 NaN Detchd 2005.0 Unf 2.0 528.0 TA TA Y 0 46 0 0 0 0 NaN GdPrv Shed 800 8 2009 ConLI Normal 110000.0
440 441 20 RL 105.0 15431 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 10 5 2008 2008 Hip CompShg VinylSd VinylSd Stone 200.0 Ex TA PConc Ex TA Gd GLQ 1767.0 ALQ 539.0 788.0 3094.0 GasA ... Y SBrkr 2402 0 0 2402 1.0 0.0 2 0 2 1 Ex 10 Typ 2 Gd Attchd 2008.0 Fin 3.0 672.0 TA TA Y 0 72 0 0 170 0 NaN NaN NaN 0 4 2009 WD Normal 555000.0
441 442 90 RL 92.0 12108 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm Duplex 1Story 4 4 1955 1955 Gable CompShg VinylSd VinylSd BrkFace 270.0 TA TA CBlock TA TA No ALQ 133.0 Unf 0.0 1307.0 1440.0 GasA ... N FuseF 1440 0 0 1440 0.0 0.0 2 0 4 2 Fa 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal 118000.0
442 443 50 RM 52.0 6240 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 7 1930 1992 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 1078.0 1078.0 GasA ... Y SBrkr 1128 445 0 1573 0.0 0.0 2 0 3 1 TA 8 Typ 1 Gd Detchd 1930.0 Unf 2.0 360.0 TA TA P 0 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 162900.0
443 444 120 RL 53.0 3922 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2006 2007 Gable CompShg WdShing Wd Shng BrkFace 72.0 Gd TA PConc Ex TA Av Unf 0.0 Unf 0.0 1258.0 1258.0 GasA ... Y SBrkr 1258 0 0 1258 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2007.0 Fin 3.0 648.0 TA TA Y 144 16 0 0 0 0 NaN NaN NaN 0 6 2007 New Partial 172500.0
444 445 60 RL 70.0 8750 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1994 1995 Gable CompShg VinylSd VinylSd None 0.0 Gd Gd PConc Gd TA No GLQ 642.0 Unf 0.0 273.0 915.0 GasA ... Y SBrkr 933 975 0 1908 1.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Attchd 1994.0 Unf 2.0 493.0 TA TA Y 144 133 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 210000.0
445 446 20 RL 73.0 9855 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 1Story 6 5 1956 1956 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1436.0 1436.0 GasA ... Y SBrkr 1689 0 0 1689 0.0 0.0 1 0 3 1 TA 7 Typ 1 Gd Attchd 1956.0 Unf 2.0 480.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 11 2009 COD Normal 127500.0
446 447 20 RL 137.0 16492 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes PosA Norm 1Fam 1Story 6 6 1966 2002 Gable CompShg BrkFace Plywood None 0.0 Gd TA CBlock TA TA No ALQ 247.0 Rec 713.0 557.0 1517.0 GasA ... Y SBrkr 1888 0 0 1888 0.0 0.0 2 1 2 1 Gd 6 Mod 1 Gd Attchd 1966.0 Fin 2.0 578.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 190000.0
447 448 60 RL NaN 11214 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 7 5 1998 1999 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 930.0 930.0 GasA ... Y SBrkr 956 930 0 1886 0.0 0.0 2 1 4 1 Gd 10 Typ 1 TA Attchd 1998.0 Fin 2.0 431.0 TA TA Y 89 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 199900.0
448 449 50 RM 50.0 8600 Pave NaN Reg Bnk AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 6 6 1937 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 780.0 780.0 GasA ... Y SBrkr 780 596 0 1376 0.0 0.0 2 0 3 1 TA 7 Typ 1 Gd Detchd 1937.0 Unf 1.0 198.0 TA TA N 0 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 119500.0
449 450 50 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 3 7 1948 2002 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No ALQ 331.0 Unf 0.0 318.0 649.0 GasA ... Y SBrkr 679 504 0 1183 0.0 0.0 1 1 2 1 TA 6 Typ 0 NaN Detchd 1981.0 Unf 1.0 308.0 TA TA Y 0 176 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 120000.0
450 451 30 RM 70.0 5684 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 6 8 1930 2005 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 813.0 813.0 GasA ... Y FuseA 813 0 0 813 0.0 0.0 1 0 2 1 Gd 5 Typ 0 NaN Detchd 1932.0 Unf 1.0 270.0 Fa Fa N 0 113 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 110000.0
451 452 20 RL 62.0 70761 Pave NaN IR1 Low AllPub Inside Mod ClearCr Norm Norm 1Fam 1Story 7 5 1975 1975 Gable WdShngl Plywood Plywood None 0.0 TA TA CBlock Gd TA Gd ALQ 655.0 Unf 0.0 878.0 1533.0 GasA ... Y SBrkr 1533 0 0 1533 1.0 0.0 2 0 2 1 Gd 5 Typ 2 TA Attchd 1975.0 Unf 2.0 576.0 TA TA Y 200 54 0 0 0 0 NaN NaN NaN 0 12 2006 WD Normal 280000.0
452 453 60 RL NaN 9303 Pave NaN IR1 Lvl AllPub Corner Gtl Timber Norm Norm 1Fam 2Story 6 5 1996 1997 Hip CompShg VinylSd VinylSd BrkFace 42.0 Gd TA PConc Ex TA No ALQ 742.0 Unf 0.0 130.0 872.0 GasA ... Y SBrkr 888 868 0 1756 1.0 0.0 2 1 3 1 TA 7 Typ 0 NaN Attchd 1996.0 Fin 2.0 422.0 TA TA Y 144 122 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 204000.0
453 454 60 FV 75.0 9000 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 2008 2008 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 768.0 768.0 GasA ... Y SBrkr 786 804 0 1590 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2008.0 RFn 2.0 676.0 TA TA Y 0 30 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 210000.0
454 455 90 RL 63.0 9297 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm Duplex 1Story 5 5 1976 1976 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No ALQ 1606.0 Unf 0.0 122.0 1728.0 GasA ... Y SBrkr 1728 0 0 1728 2.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Detchd 1976.0 Unf 2.0 560.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Family 188000.0
455 456 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 7 6 1973 1973 Hip CompShg HdBoard HdBoard BrkFace 320.0 TA TA CBlock TA TA No ALQ 916.0 Unf 0.0 326.0 1242.0 GasA ... Y SBrkr 1242 0 0 1242 0.0 0.0 1 1 3 1 TA 6 Typ 1 TA Attchd 1973.0 Unf 2.0 528.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 9 2007 WD Normal 175500.0
456 457 70 RM 34.0 4571 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 5 5 1916 1950 Gable CompShg AsbShng AsbShng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 624.0 624.0 GasA ... N SBrkr 624 720 0 1344 0.0 0.0 1 0 4 1 TA 7 Typ 0 NaN Detchd 1916.0 Unf 3.0 513.0 Fa Fa Y 0 0 96 0 0 0 NaN NaN NaN 0 5 2008 COD Abnorml 98000.0
457 458 20 RL NaN 53227 Pave NaN IR1 Low AllPub CulDSac Mod ClearCr Norm Norm 1Fam 1Story 4 6 1954 1994 Flat Tar&Grv Plywood Plywood None 0.0 TA TA CBlock Gd TA Gd BLQ 1116.0 Unf 0.0 248.0 1364.0 GasA ... Y SBrkr 1663 0 0 1663 1.0 0.0 1 0 2 1 Gd 6 Min1 2 Gd Attchd 1954.0 Fin 2.0 529.0 TA TA Y 224 137 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal 256000.0
458 459 70 RM NaN 5100 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 8 7 1925 1996 Hip CompShg Stucco Wd Shng None 0.0 TA Gd PConc TA TA No Unf 0.0 Unf 0.0 588.0 588.0 GasA ... Y SBrkr 833 833 0 1666 0.0 0.0 1 0 3 1 Gd 7 Typ 1 Gd Detchd 1925.0 Unf 1.0 228.0 TA TA Y 192 63 0 0 0 0 NaN MnPrv NaN 0 6 2008 WD Normal 161000.0
459 460 50 RL NaN 7015 Pave NaN IR1 Bnk AllPub Corner Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 4 1950 1950 Gable CompShg MetalSd MetalSd BrkCmn 161.0 TA TA CBlock TA TA No LwQ 185.0 Unf 0.0 524.0 709.0 GasA ... Y SBrkr 979 224 0 1203 1.0 0.0 1 0 3 1 Gd 5 Typ 1 TA Detchd 1950.0 Unf 1.0 352.0 TA TA Y 0 0 248 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 110000.0
460 461 60 FV 75.0 8004 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst RRAn Norm 1Fam 2Story 8 5 2009 2009 Gable CompShg VinylSd VinylSd Stone 110.0 Gd TA PConc Gd TA No GLQ 544.0 Unf 0.0 288.0 832.0 GasA ... Y SBrkr 832 1103 0 1935 1.0 0.0 2 1 3 1 TA 8 Typ 0 NaN BuiltIn 2009.0 Fin 2.0 552.0 TA TA Y 0 150 0 0 0 0 NaN NaN NaN 0 12 2009 New Partial 263435.0
461 462 70 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Feedr Norm 1Fam 2Story 7 9 1936 2007 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd Gd PConc Gd Gd No ALQ 350.0 BLQ 210.0 0.0 560.0 GasA ... Y SBrkr 575 560 0 1135 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Detchd 1971.0 RFn 2.0 576.0 TA TA Y 256 0 0 0 0 0 NaN MnPrv NaN 0 4 2009 WD Normal 155000.0
462 463 20 RL 60.0 8281 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1965 1965 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 553.0 BLQ 311.0 0.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 3 1 TA 5 Typ 1 Po Detchd 1965.0 Unf 1.0 360.0 TA TA Y 0 0 236 0 0 0 NaN GdWo NaN 0 12 2009 WD Normal 62383.0
463 464 70 RL 74.0 11988 Pave NaN IR1 HLS AllPub Inside Mod Crawfor Norm Norm 1Fam 2Story 6 7 1934 1995 Hip CompShg Stucco Stucco None 0.0 TA TA CBlock TA TA No LwQ 326.0 Unf 0.0 389.0 715.0 GasA ... Y FuseA 849 811 0 1660 0.0 0.0 1 1 3 1 TA 6 Typ 1 Gd Detchd 1939.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 188700.0
464 465 20 RL 60.0 8430 Pave NaN Reg HLS AllPub Inside Mod CollgCr Norm Norm 1Fam 1Story 5 5 1978 1978 Gable CompShg HdBoard HdBoard BrkFace 136.0 TA TA CBlock Gd TA No Rec 616.0 Unf 0.0 424.0 1040.0 GasA ... Y SBrkr 1040 0 0 1040 0.0 0.0 2 0 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal 124000.0
465 466 120 RM NaN 3072 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2004 2004 Hip CompShg VinylSd VinylSd BrkFace 18.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1375.0 1375.0 GasA ... Y SBrkr 1414 0 0 1414 0.0 0.0 2 0 2 1 Gd 6 Typ 1 TA Attchd 2004.0 Fin 2.0 398.0 TA TA Y 144 20 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 178740.0
466 467 20 RL 85.0 10628 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 7 5 1970 1970 Flat Tar&Grv Plywood Plywood None 0.0 TA Gd CBlock TA Gd Gd GLQ 778.0 Unf 0.0 499.0 1277.0 GasA ... Y SBrkr 1277 0 0 1277 1.0 0.0 1 0 2 1 TA 5 Typ 1 Po Attchd 1970.0 Unf 2.0 526.0 TA TA Y 0 0 0 0 176 0 NaN GdWo NaN 0 4 2007 WD Normal 167000.0
467 468 70 RL 79.0 9480 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Artery Norm 1Fam 2Story 5 7 1942 1995 Gable CompShg MetalSd MetalSd Stone 224.0 TA TA CBlock TA TA No LwQ 386.0 Unf 0.0 342.0 728.0 GasA ... Y SBrkr 888 756 0 1644 0.0 0.0 1 1 3 1 Gd 7 Typ 2 Gd Attchd 1942.0 Unf 1.0 312.0 TA TA Y 168 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 146500.0
468 469 20 RL 98.0 11428 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd Stone 248.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1626.0 1626.0 GasA ... Y SBrkr 1634 0 0 1634 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 RFn 3.0 866.0 TA TA Y 0 44 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 250000.0
469 470 60 RL 76.0 9291 Pave NaN IR1 Lvl AllPub Corner Gtl SawyerW RRNe Norm 1Fam 2Story 6 5 1993 1993 Gable CompShg HdBoard HdBoard BrkFace 120.0 Gd TA PConc Gd TA No GLQ 426.0 Unf 0.0 406.0 832.0 GasA ... Y SBrkr 832 878 0 1710 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1993.0 RFn 2.0 506.0 TA TA Y 144 70 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 187000.0
470 471 120 RL NaN 6820 Pave NaN IR1 Lvl AllPub Corner Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 1985 1985 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA Av GLQ 368.0 BLQ 1120.0 0.0 1488.0 GasA ... Y SBrkr 1502 0 0 1502 1.0 0.0 1 1 1 1 Gd 4 Typ 0 NaN Attchd 1985.0 RFn 2.0 528.0 TA TA Y 0 54 0 0 140 0 NaN NaN NaN 0 6 2010 WD Normal 212000.0
471 472 60 RL 92.0 11952 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes PosA Norm 1Fam 2Story 7 6 1977 1977 Mansard WdShake WdShing Plywood None 0.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 808.0 808.0 GasA ... Y SBrkr 1161 808 0 1969 0.0 0.0 2 1 3 1 TA 8 Typ 1 Gd Attchd 1977.0 RFn 2.0 534.0 TA TA Y 0 0 0 0 276 0 NaN NaN NaN 0 11 2007 WD Normal 190000.0
472 473 180 RM 35.0 3675 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm TwnhsE SLvl 6 5 2005 2005 Gable CompShg VinylSd VinylSd BrkFace 80.0 TA TA PConc Gd TA Gd GLQ 459.0 Unf 0.0 88.0 547.0 GasA ... Y SBrkr 1072 0 0 1072 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Basment 2005.0 RFn 2.0 525.0 TA TA Y 0 28 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 148000.0
473 474 20 RL 110.0 14977 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2006 2007 Gable CompShg VinylSd VinylSd BrkFace 304.0 Gd TA PConc Ex TA Gd GLQ 1350.0 Unf 0.0 626.0 1976.0 GasA ... Y SBrkr 1976 0 0 1976 1.0 0.0 2 0 2 1 Gd 7 Typ 1 Ex Attchd 2006.0 RFn 3.0 908.0 TA TA Y 250 63 0 0 0 0 NaN NaN NaN 0 7 2007 New Partial 440000.0
474 475 120 RL 41.0 5330 Pave NaN Reg Lvl AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 2000 2000 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA Av GLQ 1196.0 Unf 0.0 298.0 1494.0 GasA ... Y SBrkr 1652 0 0 1652 1.0 0.0 2 0 2 1 Ex 6 Typ 0 NaN Attchd 2000.0 RFn 2.0 499.0 TA TA Y 96 48 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 251000.0
475 476 20 RL 80.0 8480 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Norm Norm 1Fam 1Story 5 6 1963 1963 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No GLQ 630.0 Unf 0.0 340.0 970.0 GasA ... Y SBrkr 970 0 0 970 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1996.0 Unf 2.0 624.0 TA TA Y 0 24 0 0 192 0 NaN NaN NaN 0 7 2007 WD Normal 132500.0
476 477 20 RL 75.0 13125 Pave NaN Reg Lvl AllPub Inside Mod CollgCr Norm Norm 1Fam 1Story 6 5 1997 1998 Gable CompShg VinylSd VinylSd BrkFace 215.0 TA TA PConc Gd TA Gd GLQ 994.0 Unf 0.0 484.0 1478.0 GasA ... Y SBrkr 1493 0 0 1493 1.0 0.0 2 0 3 1 Gd 7 Typ 1 TA Attchd 1997.0 Fin 2.0 508.0 TA TA Y 140 39 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal 208900.0
477 478 60 RL 105.0 13693 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2006 2006 Hip CompShg VinylSd VinylSd BrkFace 772.0 Ex TA PConc Gd TA Av Unf 0.0 Unf 0.0 2153.0 2153.0 GasA ... Y SBrkr 2069 574 0 2643 0.0 0.0 2 1 3 1 Ex 9 Typ 1 Gd BuiltIn 2006.0 Fin 3.0 694.0 TA TA Y 414 84 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal 380000.0
478 479 20 RL 79.0 10637 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2007 2008 Hip CompShg VinylSd VinylSd Stone 336.0 Gd TA PConc Ex TA Gd GLQ 1288.0 Unf 0.0 417.0 1705.0 GasA ... Y SBrkr 1718 0 0 1718 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2007.0 RFn 3.0 826.0 TA TA Y 208 44 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal 297000.0
479 480 30 RM 50.0 5925 Pave NaN Reg Bnk AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 4 7 1937 2000 Hip CompShg Stucco Stucco BrkCmn 435.0 TA TA BrkTil Fa TA No Rec 168.0 Unf 0.0 739.0 907.0 GasA ... Y SBrkr 1131 0 0 1131 0.0 0.0 1 0 2 1 TA 7 Typ 0 NaN Detchd 1995.0 Unf 2.0 672.0 TA TA Y 0 72 0 0 0 0 NaN MnPrv NaN 0 3 2007 WD Alloca 89471.0
480 481 20 RL 98.0 16033 Pave NaN IR1 Lvl AllPub FR2 Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2004 2005 Hip CompShg VinylSd VinylSd BrkFace 378.0 Gd TA PConc Ex TA Gd GLQ 1261.0 Unf 0.0 572.0 1833.0 GasA ... Y SBrkr 1850 0 0 1850 1.0 0.0 2 0 3 1 Gd 8 Typ 1 Gd Attchd 2004.0 Fin 3.0 772.0 TA TA Y 519 112 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal 326000.0
481 482 20 RL 72.0 11846 Pave NaN IR1 HLS AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2003 2004 Hip CompShg VinylSd VinylSd BrkFace 562.0 Gd TA PConc Ex TA Gd GLQ 1567.0 Unf 0.0 225.0 1792.0 GasA ... Y SBrkr 1792 0 0 1792 1.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2003.0 Fin 3.0 874.0 TA TA Y 206 49 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal 374000.0
482 483 70 RM 50.0 2500 Pave Pave Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 2Story 7 8 1915 2005 Gable CompShg Stucco Stucco None 0.0 Gd TA PConc TA TA No ALQ 299.0 Unf 0.0 611.0 910.0 GasA ... Y SBrkr 916 910 0 1826 1.0 0.0 1 1 4 1 Ex 7 Min2 1 Gd Attchd 1915.0 Unf 1.0 164.0 Fa Fa Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 155000.0
483 484 120 RM 32.0 4500 Pave NaN Reg Lvl AllPub FR2 Gtl Mitchel Norm Norm Twnhs 1Story 6 5 1998 1998 Hip CompShg VinylSd VinylSd BrkFace 116.0 TA TA PConc Ex TA No GLQ 897.0 Unf 0.0 319.0 1216.0 GasA ... Y SBrkr 1216 0 0 1216 1.0 0.0 2 0 2 1 TA 5 Typ 0 NaN Attchd 1998.0 Unf 2.0 402.0 TA TA Y 0 125 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 164000.0
484 485 20 RL NaN 7758 Pave NaN IR1 Lvl AllPub Corner Gtl Sawyer Norm Norm 1Fam 1Story 5 7 1962 2001 Gable CompShg HdBoard Plywood None 0.0 TA Gd CBlock TA TA No ALQ 588.0 Unf 0.0 411.0 999.0 GasA ... Y SBrkr 999 0 0 999 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Detchd 1963.0 Unf 1.0 264.0 TA TA Y 0 132 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal 132500.0
485 486 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1950 2007 Gable CompShg MetalSd MetalSd None 0.0 Gd TA CBlock TA TA No ALQ 607.0 Unf 0.0 506.0 1113.0 GasA ... Y SBrkr 1113 0 0 1113 0.0 0.0 1 0 3 1 Gd 5 Typ 1 Gd Attchd 1950.0 Unf 1.0 264.0 TA TA Y 0 80 120 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 147000.0
486 487 20 RL 79.0 10289 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1965 1965 Hip CompShg MetalSd MetalSd BrkFace 168.0 TA TA CBlock TA TA No ALQ 836.0 Unf 0.0 237.0 1073.0 GasA ... Y SBrkr 1073 0 0 1073 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1965.0 RFn 2.0 515.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 156000.0
487 488 20 RL 70.0 12243 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 5 6 1971 1971 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA Av ALQ 998.0 Unf 0.0 486.0 1484.0 GasA ... Y SBrkr 1484 0 0 1484 0.0 0.0 2 0 3 1 TA 7 Typ 1 TA Attchd 1971.0 Unf 2.0 487.0 TA TA Y 224 0 0 0 180 0 NaN NaN NaN 0 2 2007 WD Normal 175000.0
488 489 190 RL 60.0 10800 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 2fmCon 1.5Fin 5 4 1900 1970 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Fa CBlock TA Fa No BLQ 664.0 Unf 0.0 290.0 954.0 GasA ... N FuseA 1766 648 0 2414 0.0 0.0 2 0 3 2 TA 10 Mod 1 Gd Attchd 1970.0 Unf 2.0 520.0 TA Fa N 142 0 0 0 0 0 NaN NaN NaN 0 5 2006 ConLD Normal 160000.0
489 490 180 RM 21.0 1526 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs SFoyer 4 8 1970 2002 Gable CompShg CemntBd CmentBd None 0.0 TA Gd CBlock Gd TA Av GLQ 515.0 Unf 0.0 115.0 630.0 GasA ... Y SBrkr 630 0 0 630 1.0 0.0 1 0 1 1 Gd 3 Typ 0 NaN Attchd 1970.0 Unf 1.0 286.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 86000.0
490 491 160 RM NaN 2665 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 2Story 5 6 1976 1976 Gable CompShg CemntBd CmentBd None 0.0 TA TA PConc Gd TA Mn Unf 0.0 Unf 0.0 264.0 264.0 GasA ... Y SBrkr 616 688 0 1304 0.0 0.0 1 1 3 1 TA 4 Typ 1 Gd BuiltIn 1976.0 Fin 1.0 336.0 TA TA Y 141 24 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 115000.0
491 492 50 RL 79.0 9490 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Artery Norm 1Fam 1.5Fin 6 7 1941 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No BLQ 403.0 Rec 165.0 238.0 806.0 GasA ... Y FuseA 958 620 0 1578 1.0 0.0 1 0 3 1 Fa 5 Typ 2 TA Attchd 1941.0 Unf 1.0 240.0 TA TA Y 0 0 32 0 0 0 NaN MnPrv NaN 0 8 2006 WD Normal 133000.0
492 493 60 RL 105.0 15578 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 728.0 728.0 GasA ... Y SBrkr 728 728 0 1456 0.0 0.0 2 1 3 1 TA 8 Typ 0 NaN Attchd 2006.0 RFn 2.0 429.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2006 New Partial 172785.0
493 494 20 RL 70.0 7931 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1960 1960 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA CBlock TA TA No BLQ 374.0 LwQ 532.0 363.0 1269.0 GasA ... Y FuseA 1269 0 0 1269 0.0 0.0 1 1 3 1 TA 6 Typ 1 Fa Detchd 1964.0 Unf 1.0 308.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 155000.0
494 495 30 RM 50.0 5784 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1Story 5 8 1938 1996 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil Fa TA No Unf 0.0 Unf 0.0 190.0 190.0 GasA ... Y FuseA 886 0 0 886 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1938.0 Unf 1.0 273.0 TA TA Y 144 20 80 0 0 0 NaN NaN NaN 0 12 2009 WD Normal 91300.0
495 496 30 C (all) 60.0 7879 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 4 5 1920 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 495.0 Unf 0.0 225.0 720.0 GasA ... N FuseA 720 0 0 720 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 523 115 0 0 0 NaN GdWo NaN 0 11 2009 WD Abnorml 34900.0
496 497 20 RL NaN 12692 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 1Story 8 5 1992 1993 Hip CompShg BrkFace BrkFace None 0.0 Gd TA PConc Gd TA No GLQ 1231.0 Unf 0.0 1969.0 3200.0 GasA ... Y SBrkr 3228 0 0 3228 1.0 0.0 3 0 4 1 Gd 10 Typ 1 Gd Attchd 1992.0 RFn 2.0 546.0 TA TA Y 264 75 291 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 430000.0
497 498 50 RL 60.0 9120 Pave Pave Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 7 6 1925 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd PConc TA TA No Rec 329.0 Unf 0.0 697.0 1026.0 GasA ... Y SBrkr 1133 687 0 1820 1.0 0.0 2 0 4 1 TA 8 Typ 0 NaN Detchd 1925.0 Unf 1.0 240.0 TA TA N 0 100 0 0 0 0 NaN GdPrv NaN 0 6 2008 WD Normal 184000.0
498 499 20 RL 65.0 7800 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 7 1967 2004 Hip CompShg HdBoard HdBoard BrkFace 89.0 TA TA PConc TA TA No ALQ 450.0 Unf 0.0 414.0 864.0 GasA ... Y SBrkr 899 0 0 899 0.0 0.0 1 0 3 1 Gd 5 Typ 0 NaN Attchd 1967.0 Fin 1.0 288.0 TA TA Y 64 0 0 0 0 0 NaN MnPrv NaN 0 6 2009 WD Normal 130000.0
499 500 20 RL 70.0 7535 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1958 1985 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No BLQ 111.0 LwQ 279.0 522.0 912.0 GasA ... Y SBrkr 912 0 0 912 0.0 1.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1958.0 Fin 1.0 297.0 TA TA Y 12 285 0 0 0 0 NaN MnWw Shed 480 6 2007 WD Normal 120000.0
500 501 160 RM 21.0 1890 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 5 1973 1973 Gable CompShg HdBoard HdBoard BrkFace 285.0 TA TA CBlock TA TA No BLQ 356.0 Unf 0.0 316.0 672.0 GasA ... Y SBrkr 672 546 0 1218 0.0 0.0 1 1 3 1 TA 7 Typ 0 NaN Detchd 1973.0 Unf 1.0 264.0 TA TA Y 144 28 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 113000.0
501 502 60 FV 75.0 9803 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 400.0 Unf 0.0 466.0 866.0 GasA ... Y SBrkr 866 902 0 1768 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2005.0 RFn 2.0 603.0 TA TA Y 0 108 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal 226700.0
502 503 20 RL 70.0 9170 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Feedr Norm 1Fam 1Story 5 7 1965 1965 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No ALQ 698.0 GLQ 96.0 420.0 1214.0 GasA ... Y SBrkr 1214 0 0 1214 1.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1965.0 Unf 2.0 461.0 Fa Fa Y 0 0 184 0 0 0 NaN GdPrv Shed 400 4 2007 WD Normal 140000.0
503 504 20 RL 100.0 15602 Pave NaN IR1 Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 7 8 1959 1997 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA CBlock TA TA No ALQ 1247.0 Unf 0.0 254.0 1501.0 GasA ... Y SBrkr 1801 0 0 1801 1.0 0.0 2 0 1 1 TA 6 Typ 2 TA Attchd 1959.0 Fin 2.0 484.0 TA TA Y 0 54 0 0 161 0 NaN GdWo NaN 0 3 2010 WD Normal 289000.0
504 505 160 RL 24.0 2308 Pave NaN Reg Lvl AllPub Inside Gtl NPkVill Norm Norm TwnhsE 2Story 6 5 1974 1974 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock TA TA No ALQ 257.0 Rec 495.0 103.0 855.0 GasA ... Y SBrkr 855 467 0 1322 0.0 1.0 2 1 3 1 TA 6 Typ 1 Fa Attchd 1974.0 Unf 2.0 440.0 TA TA Y 260 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 147000.0
505 506 90 RM 60.0 7596 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Artery Norm Duplex 2Story 5 5 1952 1952 Hip CompShg Wd Sdng Wd Sdng BrkFace 360.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 960.0 960.0 GasA ... Y SBrkr 960 1000 0 1960 0.0 0.0 2 0 4 2 TA 10 Typ 0 NaN Detchd 1952.0 Unf 2.0 400.0 TA TA N 0 0 0 0 0 0 NaN NaN NaN 0 7 2009 COD Normal 124500.0
506 507 60 RL 80.0 9554 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 8 5 1993 1994 Gable CompShg VinylSd VinylSd BrkFace 125.0 Gd TA PConc Gd TA No GLQ 380.0 Unf 0.0 397.0 777.0 GasA ... Y SBrkr 1065 846 0 1911 0.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1993.0 RFn 2.0 471.0 TA TA Y 182 81 0 0 0 0 NaN NaN NaN 0 9 2006 WD Normal 215000.0
507 508 20 FV 75.0 7862 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 6 5 2009 2009 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 27.0 Unf 0.0 1191.0 1218.0 GasA ... Y SBrkr 1218 0 0 1218 0.0 0.0 2 0 2 1 Gd 4 Typ 0 NaN Attchd 2009.0 Fin 2.0 676.0 TA TA Y 0 102 0 0 0 0 NaN NaN NaN 0 9 2009 New Partial 208300.0
508 509 70 RM 60.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 7 9 1928 2005 Gambrel CompShg MetalSd MetalSd None 0.0 TA Ex BrkTil TA TA No Rec 141.0 Unf 0.0 548.0 689.0 GasA ... Y SBrkr 689 689 0 1378 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Detchd 1928.0 Unf 2.0 360.0 TA TA N 0 0 116 0 0 0 NaN NaN NaN 0 10 2008 WD Normal 161000.0
509 510 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 6 1959 1959 Gable CompShg MetalSd MetalSd BrkFace 132.0 TA TA CBlock TA TA No ALQ 991.0 Unf 0.0 50.0 1041.0 GasA ... Y SBrkr 1041 0 0 1041 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1959.0 RFn 1.0 270.0 TA TA Y 224 88 0 0 0 0 NaN MnPrv NaN 0 7 2009 WD Normal 124500.0
510 511 20 RL 75.0 14559 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1951 2000 Hip CompShg Wd Sdng Wd Sdng BrkCmn 70.0 Gd TA CBlock TA TA No BLQ 650.0 Rec 180.0 178.0 1008.0 GasA ... Y SBrkr 1363 0 0 1363 1.0 0.0 1 0 2 1 TA 6 Min1 2 TA CarPort 1951.0 Unf 1.0 288.0 TA TA Y 324 42 0 0 168 0 NaN NaN Shed 2000 6 2009 WD Normal 164900.0
511 512 120 RL 40.0 6792 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd Stone 94.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1368.0 1368.0 GasA ... Y SBrkr 1368 0 0 1368 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2005.0 RFn 2.0 474.0 TA TA Y 132 35 0 0 0 0 NaN NaN NaN 0 3 2006 New Partial 202665.0
512 513 20 RL 70.0 9100 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Feedr Norm 1Fam 1Story 5 5 1958 1958 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No BLQ 521.0 LwQ 174.0 169.0 864.0 GasA ... Y SBrkr 864 0 0 864 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1964.0 Unf 2.0 624.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 129900.0
513 514 20 RL 71.0 9187 Pave NaN Reg Bnk AllPub Corner Gtl Mitchel Norm Norm 1Fam 1Story 6 5 1983 1983 Gable CompShg VinylSd VinylSd None 0.0 TA Gd PConc TA TA No ALQ 336.0 Unf 0.0 748.0 1084.0 GasA ... Y SBrkr 1080 0 0 1080 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Attchd 1983.0 Unf 2.0 484.0 TA TA Y 120 0 158 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 134000.0
514 515 45 RL 55.0 10594 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1.5Unf 5 5 1926 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 768.0 768.0 Grav ... N SBrkr 789 0 0 789 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1926.0 Unf 1.0 200.0 Po Po Y 0 0 112 0 0 0 NaN MnPrv NaN 0 6 2007 WD Normal 96500.0
515 516 20 RL 94.0 12220 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 10 5 2009 2009 Hip CompShg CemntBd CmentBd BrkFace 305.0 Ex TA CBlock Ex TA No GLQ 1436.0 Unf 0.0 570.0 2006.0 GasA ... Y SBrkr 2020 0 0 2020 1.0 0.0 2 1 3 1 Ex 9 Typ 1 Gd Attchd 2009.0 Fin 3.0 900.0 TA TA Y 156 54 0 0 0 0 NaN NaN NaN 0 9 2009 New Partial 402861.0
516 517 80 RL NaN 10448 Pave NaN IR1 Lvl AllPub Corner Gtl NWAmes Norm Norm 1Fam SLvl 6 6 1972 1972 Gable CompShg HdBoard HdBoard BrkFace 333.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 689.0 689.0 GasA ... Y SBrkr 1378 741 0 2119 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1972.0 RFn 2.0 583.0 TA TA Y 0 104 0 0 0 0 NaN GdPrv NaN 0 8 2009 COD Abnorml 158000.0
517 518 60 RL 79.0 10208 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 7 5 1996 1997 Gable CompShg VinylSd VinylSd BrkFace 921.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1264.0 1264.0 GasA ... Y SBrkr 1277 1067 0 2344 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1996.0 RFn 3.0 889.0 TA TA Y 220 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 265000.0
518 519 60 RL NaN 9531 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 2Story 6 5 1998 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Mn GLQ 706.0 Unf 0.0 88.0 794.0 GasA ... Y SBrkr 882 914 0 1796 1.0 0.0 2 1 3 1 TA 7 Typ 0 NaN Attchd 1998.0 RFn 2.0 546.0 TA TA Y 0 36 0 0 0 0 NaN MnPrv NaN 0 5 2007 WD Normal 211000.0
519 520 70 RL 53.0 10918 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 7 9 1926 2004 Gambrel CompShg MetalSd MetalSd None 0.0 Gd TA BrkTil Gd TA No Unf 0.0 Unf 0.0 1276.0 1276.0 GasA ... Y SBrkr 1276 804 0 2080 0.0 0.0 1 1 3 1 Gd 9 Typ 2 Gd Detchd 1926.0 Unf 1.0 282.0 TA TA Y 0 0 0 0 145 0 NaN MnPrv NaN 0 6 2009 WD Normal 234000.0
520 521 190 RL 60.0 10800 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 2fmCon 2Story 4 7 1900 2000 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N FuseA 694 600 0 1294 0.0 0.0 2 0 3 2 TA 7 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 220 114 210 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 106250.0
521 522 20 RL 90.0 11988 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Feedr Norm 1Fam 1Story 6 6 1957 1957 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No Rec 777.0 Unf 0.0 467.0 1244.0 GasA ... Y FuseA 1244 0 0 1244 0.0 0.0 1 1 3 1 TA 6 Typ 2 Gd Attchd 1957.0 Unf 1.0 336.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 150000.0
522 523 50 RM 50.0 5000 Pave NaN Reg Lvl AllPub Corner Gtl BrkSide Feedr Norm 1Fam 1.5Fin 6 7 1947 1950 Gable CompShg CemntBd CmentBd None 0.0 TA Gd CBlock TA TA No ALQ 399.0 Unf 0.0 605.0 1004.0 GasA ... Y SBrkr 1004 660 0 1664 0.0 0.0 2 0 3 1 TA 7 Typ 2 Gd Detchd 1950.0 Unf 2.0 420.0 TA TA Y 0 24 36 0 0 0 NaN NaN NaN 0 10 2006 WD Normal 159000.0
523 524 60 RL 130.0 40094 Pave NaN IR1 Bnk AllPub Inside Gtl Edwards PosN PosN 1Fam 2Story 10 5 2007 2008 Hip CompShg CemntBd CmentBd Stone 762.0 Ex TA PConc Ex TA Gd GLQ 2260.0 Unf 0.0 878.0 3138.0 GasA ... Y SBrkr 3138 1538 0 4676 1.0 0.0 3 1 3 1 Ex 11 Typ 1 Gd BuiltIn 2007.0 Fin 3.0 884.0 TA TA Y 208 406 0 0 0 0 NaN NaN NaN 0 10 2007 New Partial 184750.0
524 525 60 RL 95.0 11787 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 7 5 1996 1997 Gable CompShg VinylSd VinylSd BrkFace 594.0 Gd TA PConc Gd TA No GLQ 719.0 Unf 0.0 660.0 1379.0 GasA ... Y SBrkr 1383 1015 0 2398 1.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1996.0 Fin 3.0 834.0 TA TA Y 239 60 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 315750.0
525 526 20 FV 62.0 7500 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1257.0 1257.0 GasA ... Y SBrkr 1266 0 0 1266 0.0 0.0 2 0 3 1 Gd 6 Typ 1 TA Attchd 2005.0 Unf 2.0 453.0 TA TA Y 38 144 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 176000.0
526 527 20 RL 70.0 13300 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1956 2000 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock Gd TA No Rec 377.0 Unf 0.0 551.0 928.0 GasA ... Y SBrkr 928 0 0 928 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1956.0 Unf 1.0 252.0 TA TA Y 261 0 156 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 132000.0
527 528 60 RL 67.0 14948 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2008 2008 Hip CompShg VinylSd VinylSd Stone 268.0 Ex TA PConc Ex TA Av GLQ 1330.0 Unf 0.0 122.0 1452.0 GasA ... Y SBrkr 1476 1237 0 2713 1.0 0.0 2 1 3 1 Ex 11 Typ 1 Gd Attchd 2008.0 Fin 3.0 858.0 TA TA Y 126 66 0 0 0 0 NaN NaN NaN 0 11 2008 New Partial 446261.0
528 529 30 RL 58.0 9098 Pave NaN IR1 Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 7 1920 2002 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA Mn ALQ 348.0 Unf 0.0 180.0 528.0 GasA ... Y SBrkr 605 0 0 605 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 144 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 86000.0
529 530 20 RL NaN 32668 Pave NaN IR1 Lvl AllPub CulDSac Gtl Crawfor Norm Norm 1Fam 1Story 6 3 1957 1975 Hip CompShg Wd Sdng Stone NaN NaN Gd TA PConc TA TA No Rec 1219.0 Unf 0.0 816.0 2035.0 GasA ... Y SBrkr 2515 0 0 2515 1.0 0.0 3 0 4 2 TA 9 Maj1 2 TA Attchd 1975.0 RFn 2.0 484.0 TA TA Y 0 0 200 0 0 0 NaN NaN NaN 0 3 2007 WD Alloca 200624.0
530 531 80 RL 85.0 10200 Pave NaN Reg Lvl AllPub Inside Gtl Timber Norm Norm 1Fam SLvl 6 5 1988 1989 Gable CompShg HdBoard HdBoard BrkFace 219.0 Gd TA CBlock Gd TA Av GLQ 783.0 Unf 0.0 678.0 1461.0 GasA ... Y SBrkr 1509 0 0 1509 1.0 0.0 2 0 3 1 Gd 5 Typ 1 Fa Attchd 1988.0 RFn 2.0 600.0 TA TA Y 224 0 0 0 0 0 NaN NaN NaN 0 8 2008 WD Abnorml 175000.0
531 532 70 RM 60.0 6155 Pave NaN IR1 Lvl AllPub FR3 Gtl BrkSide RRNn Feedr 1Fam 2Story 6 8 1920 1999 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Fa Fa Mn Unf 0.0 Unf 0.0 611.0 611.0 GasA ... Y SBrkr 751 611 0 1362 0.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Detchd 1920.0 Fin 2.0 502.0 TA Fa Y 0 0 84 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 128000.0
532 533 20 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1955 2007 Gable CompShg VinylSd VinylSd None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 827 0 0 827 0.0 0.0 1 0 2 1 TA 5 Mod 1 Po Detchd 1967.0 Unf 1.0 392.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 107500.0
533 534 20 RL 50.0 5000 Pave NaN Reg Low AllPub Inside Mod BrkSide Norm Norm 1Fam 1Story 1 3 1946 1950 Gable CompShg VinylSd VinylSd None 0.0 Fa Fa Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N FuseF 334 0 0 334 0.0 0.0 1 0 1 1 Fa 2 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 0 0 0 0 NaN NaN NaN 0 1 2007 WD Normal 39300.0
534 535 60 RL 74.0 9056 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 8 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex Gd Av Unf 0.0 Unf 0.0 707.0 707.0 GasA ... Y SBrkr 707 707 0 1414 0.0 0.0 2 1 3 1 Gd 6 Typ 1 Gd Attchd 2004.0 Fin 2.0 403.0 TA TA Y 100 35 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal 178000.0
535 536 190 RL 70.0 7000 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 2fmCon 2Story 5 7 1910 1991 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Gd TA Gd GLQ 969.0 Unf 0.0 148.0 1117.0 GasA ... Y SBrkr 820 527 0 1347 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 85 0 148 0 0 0 NaN NaN NaN 0 1 2008 WD Normal 107500.0
536 537 60 RL 57.0 8924 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1998 1999 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Av Unf 0.0 Unf 0.0 880.0 880.0 GasA ... Y SBrkr 880 844 0 1724 0.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 1998.0 Fin 2.0 527.0 TA TA Y 120 155 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 188000.0
537 538 20 RL NaN 12735 Pave NaN IR1 Lvl AllPub FR2 Gtl NAmes Norm Norm 1Fam 1Story 4 5 1972 1972 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No BLQ 600.0 Unf 0.0 264.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1980.0 Unf 2.0 576.0 TA TA Y 216 0 0 0 0 0 NaN MnWw NaN 0 4 2008 COD Normal 111250.0
538 539 20 RL NaN 11553 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1968 1968 Hip CompShg Plywood Plywood BrkFace 188.0 TA TA CBlock TA TA No BLQ 673.0 Unf 0.0 378.0 1051.0 GasA ... Y SBrkr 1159 0 0 1159 0.0 0.0 1 1 3 1 TA 7 Typ 1 Fa Attchd 1968.0 Unf 1.0 336.0 TA TA Y 466 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 158000.0
539 540 20 RL NaN 11423 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2001 2002 Gable CompShg VinylSd VinylSd BrkFace 479.0 Gd TA PConc Gd TA Av GLQ 1358.0 Unf 0.0 223.0 1581.0 GasA ... Y SBrkr 1601 0 0 1601 1.0 0.0 2 0 3 1 Gd 6 Typ 1 TA Attchd 2001.0 RFn 2.0 670.0 TA TA Y 180 0 0 0 0 0 NaN MnPrv Shed 2000 5 2010 WD Normal 272000.0
540 541 20 RL 85.0 14601 Pave NaN Reg Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 9 5 2006 2006 Hip CompShg VinylSd VinylSd BrkFace 584.0 Ex TA PConc Ex TA Av GLQ 1260.0 Unf 0.0 578.0 1838.0 GasA ... Y SBrkr 1838 0 0 1838 1.0 0.0 2 0 2 1 Ex 8 Typ 1 Gd Attchd 2006.0 Fin 3.0 765.0 TA TA Y 270 68 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal 315000.0
541 542 60 RL NaN 11000 Pave NaN Reg Lvl AllPub FR2 Gtl NoRidge Norm Norm 1Fam 2Story 8 5 2000 2000 Gable CompShg VinylSd VinylSd BrkFace 72.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 969.0 969.0 GasA ... Y SBrkr 997 1288 0 2285 0.0 0.0 2 1 4 1 Gd 8 Typ 1 TA BuiltIn 2000.0 Fin 3.0 648.0 TA TA Y 0 56 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 248000.0
542 543 20 RL 78.0 10140 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes RRAn Norm 1Fam 1Story 7 5 1998 1999 Hip CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA No LwQ 144.0 GLQ 1127.0 379.0 1650.0 GasA ... Y SBrkr 1680 0 0 1680 1.0 0.0 2 0 3 1 Gd 7 Maj1 1 TA Attchd 1998.0 Fin 2.0 583.0 TA TA Y 78 73 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 213250.0
543 544 120 RH 34.0 4058 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm TwnhsE SFoyer 7 5 1998 1998 Gable CompShg MetalSd MetalSd BrkFace 182.0 TA TA PConc Gd TA Av GLQ 584.0 LwQ 139.0 0.0 723.0 GasA ... Y SBrkr 767 0 0 767 1.0 0.0 1 0 1 1 TA 4 Typ 0 NaN Attchd 1998.0 Fin 1.0 367.0 TA TA Y 120 40 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 133000.0
544 545 60 RL 58.0 17104 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd Gd Av GLQ 554.0 Unf 0.0 100.0 654.0 GasA ... Y SBrkr 664 832 0 1496 1.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 RFn 2.0 426.0 TA TA Y 100 24 0 0 0 0 NaN NaN NaN 0 9 2006 New Partial 179665.0
545 546 50 RL NaN 13837 Pave NaN IR1 Lvl AllPub Corner Gtl NWAmes Norm Norm 1Fam 1.5Fin 7 5 1988 1988 Gable CompShg HdBoard HdBoard BrkFace 178.0 Gd Gd PConc Gd Gd No GLQ 1002.0 LwQ 202.0 0.0 1204.0 GasA ... Y SBrkr 1377 806 0 2183 0.0 0.0 2 1 4 1 Gd 9 Typ 0 NaN Attchd 1988.0 Unf 3.0 786.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 2 2006 WD Normal 229000.0
546 547 50 RL 70.0 8737 Pave NaN IR1 Bnk AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 7 1923 1950 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA BrkTil Gd TA No Rec 300.0 Unf 0.0 765.0 1065.0 GasA ... Y FuseA 915 720 0 1635 0.0 0.0 1 1 3 1 TA 6 Typ 1 Gd Detchd 1950.0 Unf 2.0 440.0 TA TA Y 0 38 0 144 0 0 NaN NaN NaN 0 5 2007 WD Normal 210000.0
547 548 85 RL 54.0 7244 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam SFoyer 5 7 1970 1970 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock Gd TA Av ALQ 619.0 Unf 0.0 149.0 768.0 GasA ... Y SBrkr 768 0 0 768 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1987.0 Unf 2.0 624.0 TA TA Y 104 0 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal 129500.0
548 549 20 RM 49.0 8235 Pave NaN IR1 HLS AllPub Inside Gtl OldTown Feedr RRNn 1Fam 1Story 5 7 1955 1995 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No LwQ 180.0 Rec 645.0 0.0 825.0 GasA ... Y SBrkr 825 0 0 825 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1963.0 RFn 2.0 720.0 TA TA Y 140 50 0 0 0 0 NaN MnPrv NaN 0 6 2008 WD Normal 125000.0
549 550 60 FV 75.0 9375 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 2003 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 912.0 912.0 GasA ... Y SBrkr 912 1182 0 2094 0.0 0.0 2 1 4 1 Gd 8 Typ 1 Gd BuiltIn 2003.0 Fin 2.0 615.0 TA TA Y 182 182 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal 263000.0
550 551 120 RL 53.0 4043 Pave NaN Reg Lvl AllPub Inside Gtl NPkVill Norm Norm TwnhsE 1Story 6 6 1977 1977 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA No ALQ 559.0 Unf 0.0 510.0 1069.0 GasA ... Y SBrkr 1069 0 0 1069 0.0 0.0 2 0 2 1 TA 4 Typ 0 NaN Attchd 1977.0 RFn 2.0 440.0 TA TA Y 0 55 0 0 200 0 NaN NaN NaN 0 10 2008 COD Abnorml 140000.0
551 552 20 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 6 1957 1957 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No Rec 308.0 Unf 0.0 620.0 928.0 GasA ... Y FuseA 928 0 0 928 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1957.0 Fin 1.0 288.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 112500.0
552 553 20 RL 87.0 11146 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd Stone 250.0 Gd TA PConc Ex TA Av Unf 0.0 Unf 0.0 1709.0 1709.0 GasA ... Y SBrkr 1717 0 0 1717 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 RFn 3.0 908.0 TA TA Y 169 39 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 255500.0
553 554 20 RL 67.0 8777 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Feedr Norm 1Fam 1Story 4 5 1949 2003 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1126 0 0 1126 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Detchd 2002.0 Fin 2.0 520.0 TA TA N 0 96 0 0 0 0 NaN MnPrv NaN 0 5 2009 WD Normal 108000.0
554 555 60 RL 85.0 10625 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 7 5 2003 2004 Gable CompShg VinylSd VinylSd BrkFace 292.0 Gd TA PConc Gd TA No GLQ 866.0 Unf 0.0 132.0 998.0 GasA ... Y SBrkr 1006 1040 0 2046 1.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd BuiltIn 2003.0 RFn 3.0 871.0 TA TA Y 320 62 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 284000.0
555 556 45 RM 58.0 6380 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Unf 5 6 1922 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA Fa No Unf 0.0 Unf 0.0 993.0 993.0 GasA ... Y FuseA 1048 0 0 1048 0.0 0.0 1 0 2 1 TA 5 Typ 1 Gd Detchd 1922.0 Unf 1.0 280.0 TA TA Y 0 0 116 0 0 0 NaN NaN NaN 0 8 2006 WD Normal 113000.0
556 557 20 RL 69.0 14850 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1957 1957 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 895.0 Unf 0.0 197.0 1092.0 GasA ... Y FuseA 1092 0 0 1092 1.0 0.0 1 0 2 1 TA 6 Typ 1 TA Attchd 1957.0 Fin 1.0 299.0 TA TA Y 268 0 0 0 122 0 NaN MnWw NaN 0 5 2006 WD Normal 141000.0
557 558 50 C (all) 60.0 11040 Pave NaN Reg Low AllPub Inside Mod IDOTRR Norm Norm 1Fam 1.5Fin 4 6 1920 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 637.0 Unf 0.0 0.0 637.0 GasA ... Y SBrkr 897 439 0 1336 0.0 0.0 1 1 3 1 TA 7 Typ 0 NaN CarPort 1994.0 Unf 1.0 570.0 TA TA Y 0 47 120 0 0 0 NaN NaN NaN 0 9 2006 COD Normal 108000.0
558 559 60 RL 57.0 21872 Pave NaN IR2 HLS AllPub FR2 Gtl Gilbert Norm Norm 1Fam 2Story 7 5 1996 1997 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA Gd GLQ 604.0 Unf 0.0 125.0 729.0 GasA ... Y SBrkr 729 717 0 1446 0.0 1.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1996.0 Unf 2.0 406.0 TA TA Y 264 22 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 175000.0
559 560 120 RL NaN 3196 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2003 2004 Gable CompShg VinylSd VinylSd BrkFace 18.0 Gd TA PConc Gd TA Gd Unf 0.0 Unf 0.0 1374.0 1374.0 GasA ... Y SBrkr 1557 0 0 1557 0.0 0.0 2 0 2 1 Gd 7 Typ 1 TA Attchd 2003.0 Fin 2.0 420.0 TA TA Y 143 20 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal 234000.0
560 561 20 RL NaN 11341 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 6 1957 1996 Hip CompShg Wd Sdng Wd Sdng BrkFace 180.0 TA TA CBlock Gd TA No ALQ 1302.0 Unf 0.0 90.0 1392.0 GasA ... Y SBrkr 1392 0 0 1392 1.0 0.0 1 1 3 1 TA 5 Mod 1 Gd Detchd 1957.0 Unf 2.0 528.0 TA TA Y 0 0 0 0 95 0 NaN NaN NaN 0 5 2010 WD Normal 121500.0
561 562 20 RL 77.0 10010 Pave NaN Reg Lvl AllPub Inside Mod Mitchel Norm Norm 1Fam 1Story 5 5 1974 1975 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA Av ALQ 1071.0 LwQ 123.0 195.0 1389.0 GasA ... Y SBrkr 1389 0 0 1389 1.0 0.0 1 0 2 1 TA 6 Typ 1 TA Attchd 1975.0 RFn 2.0 418.0 TA TA Y 240 38 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 170000.0
562 563 30 RL 63.0 13907 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 6 1940 1969 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA TA No BLQ 290.0 Unf 0.0 706.0 996.0 GasA ... Y SBrkr 996 0 0 996 1.0 0.0 1 0 3 1 TA 6 Typ 1 Gd NaN NaN NaN 0.0 0.0 NaN NaN Y 144 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 108000.0
563 564 50 RL 66.0 21780 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 6 7 1918 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Gd TA Mn Unf 0.0 Unf 0.0 1163.0 1163.0 GasA ... Y SBrkr 1163 511 0 1674 0.0 0.0 2 0 4 1 TA 8 Typ 1 Gd Detchd 1955.0 Fin 2.0 396.0 TA TA N 72 36 0 0 144 0 NaN NaN NaN 0 7 2008 WD Normal 185000.0
564 565 60 RL NaN 13346 Pave NaN IR1 Lvl AllPub CulDSac Gtl NoRidge Norm Norm 1Fam 2Story 7 5 1992 2000 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA No GLQ 728.0 Unf 0.0 367.0 1095.0 GasA ... Y SBrkr 1166 1129 0 2295 1.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1992.0 RFn 2.0 590.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 268000.0
565 566 70 RL 66.0 6858 Pave NaN Reg Bnk AllPub Corner Gtl SWISU Norm Norm 1Fam 2Story 6 4 1915 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 806.0 806.0 GasA ... N FuseF 841 806 0 1647 1.0 0.0 1 1 4 1 Fa 6 Typ 0 NaN Detchd 1920.0 Unf 1.0 216.0 TA TA Y 0 66 136 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 128000.0
566 567 60 RL 77.0 11198 Pave NaN IR1 Lvl AllPub Inside Gtl StoneBr Norm Norm 1Fam 2Story 9 5 2005 2007 Hip CompShg VinylSd VinylSd BrkFace 245.0 Gd TA PConc Gd Gd No Unf 0.0 Unf 0.0 1122.0 1122.0 GasA ... Y SBrkr 1134 1370 0 2504 0.0 0.0 2 1 4 1 Ex 11 Typ 1 Gd BuiltIn 2005.0 Fin 3.0 656.0 TA TA Y 144 39 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 325000.0
567 568 20 RL 70.0 10171 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 168.0 Gd TA PConc Gd TA No GLQ 2.0 Unf 0.0 1515.0 1517.0 GasA ... Y SBrkr 1535 0 0 1535 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2004.0 RFn 2.0 532.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal 214000.0
568 569 50 RL 79.0 12327 Pave NaN IR1 Low AllPub Inside Mod SawyerW Norm Norm 1Fam 1.5Fin 8 8 1983 2009 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd TA CBlock Gd TA Gd GLQ 1441.0 Unf 0.0 55.0 1496.0 GasA ... Y SBrkr 1496 636 0 2132 1.0 0.0 1 1 1 1 Gd 5 Min2 1 Gd BuiltIn 1983.0 Fin 2.0 612.0 Gd TA Y 349 40 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal 316600.0
569 570 90 RL NaN 7032 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm Duplex SFoyer 5 5 1979 1979 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Gd TA Gd GLQ 943.0 Unf 0.0 0.0 943.0 GasA ... Y SBrkr 943 0 0 943 1.0 0.0 1 0 2 1 TA 4 Typ 2 TA Detchd 1979.0 Unf 2.0 600.0 TA TA Y 42 0 0 0 0 0 NaN NaN NaN 0 12 2006 WD Normal 135960.0
570 571 90 RL 74.0 13101 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm Duplex 1Story 5 5 1965 1965 Gable CompShg HdBoard HdBoard BrkFace 108.0 TA TA CBlock TA TA No LwQ 231.0 Unf 0.0 1497.0 1728.0 GasA ... Y SBrkr 1728 0 0 1728 0.0 0.0 2 0 6 2 TA 10 Typ 0 NaN Detchd 1987.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2008 WD Normal 142600.0
571 572 20 RL 60.0 7332 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1959 1959 Gable CompShg WdShing Wd Shng BrkFace 207.0 TA TA CBlock TA TA No BLQ 414.0 Unf 0.0 450.0 864.0 GasA ... Y SBrkr 864 0 0 864 1.0 0.0 1 0 2 1 Gd 4 Typ 0 NaN Attchd 1959.0 Unf 1.0 288.0 TA TA Y 168 0 0 0 0 0 NaN NaN NaN 0 10 2006 WD Abnorml 120000.0
572 573 60 RL 83.0 13159 Pave NaN IR1 HLS AllPub Corner Gtl Timber Norm Norm 1Fam 2Story 7 5 2009 2009 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Ex TA Av Unf 0.0 Unf 0.0 846.0 846.0 GasA ... Y SBrkr 846 846 0 1692 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2009.0 RFn 2.0 650.0 TA TA Y 208 114 0 0 0 0 NaN NaN NaN 0 7 2009 New Partial 224500.0
573 574 80 RL 76.0 9967 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam SLvl 7 5 2000 2000 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 384.0 384.0 GasA ... Y SBrkr 774 656 0 1430 0.0 0.0 2 1 3 1 TA 8 Typ 1 TA BuiltIn 2000.0 RFn 2.0 400.0 TA TA Y 100 0 0 0 0 0 NaN NaN NaN 0 12 2007 WD Normal 170000.0
574 575 80 RL 70.0 10500 Pave NaN Reg Lvl AllPub FR2 Gtl NAmes Norm Norm 1Fam SLvl 5 7 1971 2005 Gambrel CompShg MetalSd AsphShn BrkFace 82.0 TA TA CBlock TA TA Av ALQ 349.0 Unf 0.0 23.0 372.0 GasA ... Y SBrkr 576 533 0 1109 0.0 1.0 1 0 3 1 TA 5 Typ 0 NaN BuiltIn 1971.0 Unf 1.0 288.0 TA TA Y 35 0 0 0 0 0 NaN GdWo NaN 0 12 2007 WD Normal 139000.0
575 576 50 RL 80.0 8480 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Fin 5 5 1947 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 442.0 Unf 0.0 390.0 832.0 GasA ... Y SBrkr 832 384 0 1216 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1947.0 Unf 1.0 336.0 TA TA Y 158 0 102 0 0 0 NaN NaN NaN 0 10 2008 COD Abnorml 118500.0
576 577 50 RL 52.0 6292 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Norm Norm 1Fam 1.5Fin 7 7 1928 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 861.0 861.0 GasA ... Y SBrkr 877 600 0 1477 0.0 1.0 2 0 3 1 TA 6 Typ 1 Gd Detchd 1928.0 Unf 1.0 216.0 TA TA Y 0 50 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal 145000.0
577 578 80 RL 96.0 11777 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam SLvl 5 6 1966 1966 Gable CompShg VinylSd VinylSd BrkFace 97.0 TA TA CBlock TA TA Av LwQ 328.0 ALQ 551.0 285.0 1164.0 GasA ... Y SBrkr 1320 0 0 1320 1.0 0.0 1 0 3 1 TA 6 Typ 2 Fa Attchd 1966.0 RFn 2.0 564.0 TA TA Y 160 68 240 0 0 0 NaN NaN NaN 0 5 2006 WD Abnorml 164500.0
578 579 160 FV 34.0 3604 Pave Pave Reg Lvl AllPub Corner Gtl Somerst Norm Norm TwnhsE 2Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 689.0 689.0 GasA ... Y SBrkr 703 689 0 1392 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Detchd 2007.0 Unf 2.0 540.0 TA TA Y 0 102 0 0 0 0 NaN NaN NaN 0 2 2008 WD Abnorml 146000.0
579 580 50 RM 81.0 12150 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 5 1954 1954 Gable CompShg MetalSd MetalSd BrkFace 335.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 1050.0 1050.0 GasA ... N FuseF 1050 745 0 1795 0.0 0.0 2 0 4 1 TA 7 Typ 0 NaN Attchd 1954.0 Unf 1.0 352.0 Fa TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2008 WD Normal 131500.0
580 581 20 RL NaN 14585 Pave NaN IR1 Lvl AllPub CulDSac Gtl NAmes Norm Norm 1Fam 1Story 6 6 1960 1987 Gable CompShg Wd Sdng Wd Sdng BrkFace 85.0 TA TA CBlock TA TA No BLQ 594.0 Rec 219.0 331.0 1144.0 GasA ... Y SBrkr 1429 0 0 1429 0.0 1.0 1 0 3 1 Gd 7 Typ 2 Gd Attchd 1960.0 Unf 2.0 572.0 TA TA Y 216 110 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 181900.0
581 582 20 RL 98.0 12704 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2008 2009 Hip CompShg VinylSd VinylSd BrkFace 306.0 Ex TA PConc Ex TA No Unf 0.0 Unf 0.0 2042.0 2042.0 GasA ... Y SBrkr 2042 0 0 2042 0.0 0.0 2 1 3 1 Ex 8 Typ 1 Gd Attchd 2009.0 RFn 3.0 1390.0 TA TA Y 0 90 0 0 0 0 NaN NaN NaN 0 8 2009 New Partial 253293.0
582 583 90 RL 81.0 11841 Grvl NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm Duplex SFoyer 6 5 1990 1990 Gable CompShg HdBoard HdBoard BrkFace 104.0 TA Gd CBlock Gd TA Av GLQ 816.0 Unf 0.0 0.0 816.0 GasA ... Y SBrkr 816 0 0 816 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 32 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 118500.0
583 584 75 RM 75.0 13500 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery PosA 1Fam 2.5Unf 10 9 1893 2000 Gable CompShg Wd Sdng Wd Sdng None 0.0 Ex Ex BrkTil TA TA No Unf 0.0 Unf 0.0 1237.0 1237.0 GasA ... Y SBrkr 1521 1254 0 2775 0.0 0.0 3 1 3 1 Gd 9 Typ 1 Gd Detchd 1988.0 Unf 2.0 880.0 Gd TA Y 105 502 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 325000.0
584 585 50 RM 51.0 6120 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 4 7 1935 1995 Gable CompShg AsbShng AsbShng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 884.0 884.0 GasA ... Y SBrkr 989 584 0 1573 0.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Detchd 1935.0 Unf 1.0 240.0 TA TA Y 0 0 54 0 120 0 NaN NaN NaN 0 7 2009 WD Normal 133000.0
585 586 20 RL 88.0 11443 Pave NaN Reg Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2005 2006 Hip CompShg VinylSd VinylSd BrkFace 208.0 Gd TA PConc Ex TA Gd GLQ 1460.0 Unf 0.0 408.0 1868.0 GasA ... Y SBrkr 2028 0 0 2028 1.0 0.0 2 0 2 1 Gd 7 Typ 2 Gd Attchd 2005.0 RFn 3.0 880.0 TA TA Y 326 66 0 0 0 0 NaN NaN NaN 0 3 2006 New Partial 369900.0
586 587 30 RL 55.0 10267 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide RRAn Norm 1Fam 1Story 6 7 1918 2000 Gable CompShg Stucco Wd Shng None 0.0 TA Gd BrkTil TA Gd Mn Rec 210.0 ALQ 606.0 0.0 816.0 GasA ... Y SBrkr 838 0 0 838 1.0 0.0 1 0 2 1 Fa 5 Typ 0 NaN Detchd 1961.0 Fin 1.0 275.0 TA TA N 0 0 112 0 0 0 NaN MnWw NaN 0 5 2008 WD Normal 130000.0
587 588 85 RL 74.0 8740 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam SFoyer 5 6 1982 1982 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA Av ALQ 672.0 Unf 0.0 168.0 840.0 GasA ... Y SBrkr 860 0 0 860 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1996.0 Unf 2.0 528.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 137000.0
588 589 20 RL 65.0 25095 Pave NaN IR1 Low AllPub Inside Sev ClearCr Norm Norm 1Fam 1Story 5 8 1968 2003 Flat Tar&Grv Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Gd GLQ 1324.0 Unf 0.0 113.0 1437.0 GasA ... Y SBrkr 1473 0 0 1473 2.0 0.0 1 0 1 1 Ex 5 Typ 2 Gd Attchd 1968.0 Unf 1.0 452.0 TA TA Y 0 48 0 0 60 0 NaN NaN NaN 0 6 2009 WD Partial 143000.0
589 590 40 RM 50.0 9100 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide RRAn Feedr 1Fam 1Story 5 6 1930 1960 Gable CompShg VinylSd VinylSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 742.0 742.0 GasA ... Y FuseA 779 0 156 935 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1988.0 Unf 1.0 308.0 TA TA P 0 0 0 0 0 0 NaN NaN Shed 600 8 2008 WD Normal 79500.0
590 591 60 RL 64.0 8320 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 490.0 Unf 0.0 280.0 770.0 GasA ... Y SBrkr 770 812 0 1582 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2004.0 RFn 2.0 520.0 TA TA Y 0 45 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal 185900.0
591 592 60 RL 97.0 13478 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 2Story 10 5 2008 2008 Gable CompShg CemntBd CmentBd Stone 420.0 Ex TA PConc Ex TA Gd GLQ 1338.0 Unf 0.0 384.0 1722.0 GasA ... Y SBrkr 1728 568 0 2296 1.0 0.0 2 1 3 1 Ex 10 Typ 1 Gd BuiltIn 2008.0 RFn 3.0 842.0 TA TA Y 382 274 0 0 0 0 NaN NaN NaN 0 6 2009 ConLI Normal 451950.0
592 593 20 RL 60.0 6600 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 8 1982 2003 Gable CompShg HdBoard HdBoard None 0.0 TA Gd PConc TA Gd No GLQ 816.0 Unf 0.0 0.0 816.0 GasA ... Y SBrkr 816 0 0 816 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1985.0 Fin 2.0 816.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 138000.0
593 594 120 RM NaN 4435 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm TwnhsE 1Story 6 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 170.0 Gd TA PConc Gd TA Av GLQ 685.0 Unf 0.0 163.0 848.0 GasA ... Y SBrkr 848 0 0 848 1.0 0.0 1 0 1 1 Gd 4 Typ 0 NaN Attchd 2003.0 Fin 2.0 420.0 TA TA Y 140 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 140000.0
594 595 20 RL 88.0 7990 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 6 1975 1975 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 924.0 924.0 GasA ... Y SBrkr 924 0 0 924 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1981.0 Unf 1.0 280.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 4 2008 WD Normal 110000.0
595 596 20 RL 69.0 11302 Pave NaN IR1 Lvl AllPub Inside Gtl StoneBr Norm Norm 1Fam 1Story 8 5 2005 2006 Gable CompShg VinylSd Other BrkFace 238.0 Gd TA PConc Gd TA Gd GLQ 1422.0 Unf 0.0 392.0 1814.0 GasA ... Y SBrkr 1826 0 0 1826 1.0 0.0 2 0 3 1 Gd 7 Typ 1 TA Attchd 2005.0 Fin 3.0 758.0 TA TA Y 180 75 0 0 120 0 NaN NaN NaN 0 8 2006 New Partial 319000.0
596 597 70 RM 60.0 3600 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 6 7 1910 1993 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 684.0 684.0 GasA ... N FuseA 684 684 0 1368 0.0 0.0 1 0 3 1 TA 7 Typ 0 NaN Detchd 1930.0 Unf 1.0 216.0 TA Fa N 0 158 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal 114504.0
597 598 120 RL 53.0 3922 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2006 2007 Gable CompShg VinylSd VinylSd BrkFace 72.0 Gd TA PConc Ex TA Av Unf 0.0 Unf 0.0 1258.0 1258.0 GasA ... Y SBrkr 1402 0 0 1402 0.0 2.0 0 2 2 1 Gd 7 Typ 1 Gd Attchd 2006.0 Fin 3.0 648.0 TA TA Y 120 16 0 0 0 0 NaN NaN NaN 0 2 2007 New Partial 194201.0
598 599 20 RL 80.0 12984 Pave NaN Reg Bnk AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 5 6 1977 1977 Gable CompShg Plywood Plywood BrkFace 459.0 TA TA CBlock Gd TA Mn ALQ 1283.0 LwQ 147.0 0.0 1430.0 GasA ... Y SBrkr 1647 0 0 1647 1.0 0.0 2 0 3 1 Gd 7 Typ 1 TA Attchd 1977.0 Fin 2.0 621.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal 217500.0
599 600 160 RM 24.0 1950 Pave NaN Reg Lvl AllPub Inside Gtl Blueste Norm Norm Twnhs 2Story 6 6 1980 1980 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock Gd TA No LwQ 81.0 GLQ 612.0 23.0 716.0 GasA ... Y SBrkr 716 840 0 1556 1.0 0.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1980.0 Fin 2.0 452.0 TA TA Y 161 0 0 0 0 0 NaN GdPrv NaN 0 7 2008 COD Normal 151000.0
600 601 60 RL 74.0 10927 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2005 2005 Gable CompShg VinylSd VinylSd BrkFace 280.0 Gd TA PConc Gd TA Av GLQ 546.0 Unf 0.0 512.0 1058.0 GasA ... Y SBrkr 1058 846 0 1904 1.0 0.0 2 1 3 1 Ex 8 Typ 1 Gd BuiltIn 2003.0 Fin 2.0 736.0 TA TA Y 179 60 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 275000.0
601 602 50 RM 50.0 9000 Pave NaN Reg Bnk AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 6 6 1937 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd PConc TA TA No Unf 0.0 Unf 0.0 780.0 780.0 GasA ... Y SBrkr 780 595 0 1375 0.0 0.0 1 1 3 1 Gd 6 Typ 1 Gd Detchd 1979.0 Unf 1.0 544.0 TA TA P 0 162 0 0 126 0 NaN NaN NaN 0 12 2007 WD Normal 141000.0
602 603 60 RL 80.0 10041 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 8 5 1992 1992 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA Mn GLQ 789.0 Unf 0.0 119.0 908.0 GasA ... Y SBrkr 927 988 0 1915 1.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1992.0 Fin 2.0 506.0 TA TA Y 120 150 0 0 0 0 NaN NaN NaN 0 2 2006 WD Abnorml 220000.0
603 604 160 FV 30.0 3182 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 2Story 7 5 2004 2005 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 600.0 600.0 GasA ... Y SBrkr 600 600 0 1200 0.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Detchd 2004.0 RFn 2.0 480.0 TA TA Y 0 172 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 151000.0
604 605 20 RL 88.0 12803 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd BrkFace 99.0 Gd TA PConc Gd TA Mn GLQ 922.0 Unf 0.0 572.0 1494.0 GasA ... Y SBrkr 1494 0 0 1494 1.0 0.0 2 0 3 1 Gd 6 Typ 1 TA Attchd 2002.0 RFn 2.0 530.0 TA TA Y 192 36 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal 221000.0
605 606 60 RL 85.0 13600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 2Story 7 6 1965 1990 Gable CompShg HdBoard HdBoard BrkFace 176.0 TA TA CBlock TA TA No BLQ 454.0 Unf 0.0 314.0 768.0 GasA ... Y SBrkr 1186 800 0 1986 0.0 0.0 2 1 3 1 TA 7 Typ 3 Fa Attchd 1965.0 Unf 2.0 486.0 TA TA Y 0 42 0 0 189 0 NaN NaN NaN 0 10 2009 WD Normal 205000.0
606 607 20 RL 82.0 12464 Pave NaN IR2 Low AllPub Corner Mod CollgCr Norm Norm 1Fam 1Story 5 5 1996 1996 Gable CompShg VinylSd VinylSd None 0.0 TA Gd PConc Gd TA No GLQ 732.0 Unf 0.0 308.0 1040.0 GasA ... Y SBrkr 1040 0 0 1040 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Detchd 2000.0 Unf 2.0 576.0 TA TA Y 168 0 0 0 0 0 NaN GdPrv NaN 0 11 2009 WD Normal 152000.0
607 608 20 RL 78.0 7800 Pave NaN Reg Bnk AllPub Inside Mod Edwards Norm Norm 1Fam 2Story 5 8 1948 2002 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA Gd No GLQ 603.0 Unf 0.0 293.0 896.0 GasA ... Y SBrkr 1112 896 0 2008 1.0 0.0 3 0 3 1 Ex 8 Typ 0 NaN Attchd 1948.0 Unf 1.0 230.0 TA TA Y 103 0 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal 225000.0
608 609 70 RL 78.0 12168 Pave NaN Reg HLS AllPub Inside Mod Crawfor Norm Norm 1Fam 2Story 8 6 1934 1998 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA PConc Gd TA Mn BLQ 428.0 Unf 0.0 537.0 965.0 GasA ... Y SBrkr 1940 1254 0 3194 0.0 0.0 2 1 4 1 TA 10 Typ 2 Gd Basment 1934.0 Unf 2.0 380.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 9 2007 WD Alloca 359100.0
609 610 20 RL 61.0 7943 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Feedr Norm 1Fam 1Story 4 5 1961 1961 Gable CompShg VinylSd VinylSd BrkCmn 192.0 TA Fa CBlock TA TA Mn Rec 903.0 Unf 0.0 126.0 1029.0 GasA ... Y SBrkr 1029 0 0 1029 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1961.0 Unf 1.0 261.0 TA TA Y 64 0 39 0 0 0 NaN NaN NaN 0 4 2007 WD Normal 118500.0
610 611 60 RL NaN 11050 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr PosN Norm 1Fam 2Story 9 5 2000 2000 Hip CompShg VinylSd VinylSd BrkFace 204.0 Gd TA PConc Ex TA Mn GLQ 904.0 Unf 0.0 536.0 1440.0 GasA ... Y SBrkr 1476 677 0 2153 1.0 0.0 2 1 3 1 Ex 8 Typ 2 Ex Attchd 2000.0 Fin 3.0 736.0 TA TA Y 253 142 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 313000.0
611 612 80 RL NaN 10395 Pave NaN IR1 Lvl AllPub FR2 Gtl NWAmes Norm Norm 1Fam SLvl 6 6 1978 1978 Gable CompShg HdBoard HdBoard BrkFace 233.0 TA TA CBlock Gd TA Av ALQ 605.0 Unf 0.0 427.0 1032.0 GasA ... Y SBrkr 1032 0 0 1032 0.0 1.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1978.0 Unf 2.0 564.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv Shed 500 7 2007 WD Normal 148000.0
612 613 60 RL NaN 11885 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 8 5 2001 2001 Gable CompShg VinylSd VinylSd BrkFace 108.0 Gd TA PConc Gd TA Av GLQ 990.0 Unf 0.0 309.0 1299.0 GasA ... Y SBrkr 1299 573 0 1872 1.0 0.0 2 1 3 1 Ex 7 Typ 1 TA BuiltIn 2001.0 RFn 2.0 531.0 TA TA Y 160 122 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal 261500.0
613 614 20 RL 70.0 8402 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Feedr Norm 1Fam 1Story 5 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No ALQ 206.0 Unf 0.0 914.0 1120.0 GasA ... Y SBrkr 1120 0 0 1120 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 30 0 0 0 0 NaN NaN NaN 0 12 2007 New Partial 147000.0
614 615 180 RM 21.0 1491 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE SFoyer 4 6 1972 1972 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock Gd TA Av LwQ 150.0 GLQ 480.0 0.0 630.0 GasA ... Y SBrkr 630 0 0 630 1.0 0.0 1 0 1 1 TA 3 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 96 24 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 75500.0
615 616 85 RL 80.0 8800 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam SFoyer 6 7 1963 1963 Gable CompShg MetalSd MetalSd BrkFace 156.0 TA Gd PConc TA TA Gd GLQ 763.0 Unf 0.0 173.0 936.0 GasA ... Y SBrkr 1054 0 0 1054 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Attchd 1963.0 RFn 2.0 480.0 TA TA Y 120 0 0 0 0 0 NaN MnPrv NaN 0 5 2010 WD Abnorml 137500.0
616 617 60 RL NaN 7861 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2002 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 457.0 Unf 0.0 326.0 783.0 GasA ... Y SBrkr 807 702 0 1509 1.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2002.0 Fin 2.0 393.0 TA TA Y 100 75 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 183200.0
617 618 45 RL 59.0 7227 Pave NaN Reg HLS AllPub Corner Mod NAmes Artery Norm 1Fam 1.5Unf 6 6 1954 1954 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 832.0 832.0 GasA ... Y SBrkr 832 0 0 832 0.0 0.0 1 0 2 1 Gd 4 Typ 0 NaN Detchd 1962.0 Unf 2.0 528.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 105500.0
618 619 20 RL 90.0 11694 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2007 2007 Hip CompShg CemntBd CmentBd BrkFace 452.0 Ex TA PConc Ex TA Av GLQ 48.0 Unf 0.0 1774.0 1822.0 GasA ... Y SBrkr 1828 0 0 1828 0.0 0.0 2 0 3 1 Gd 9 Typ 1 Gd Attchd 2007.0 Unf 3.0 774.0 TA TA Y 0 108 0 0 260 0 NaN NaN NaN 0 7 2007 New Partial 314813.0
619 620 60 RL 85.0 12244 Pave NaN Reg Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 2Story 8 5 2003 2003 Hip CompShg VinylSd VinylSd Stone 226.0 Gd TA PConc Gd TA Gd GLQ 871.0 Unf 0.0 611.0 1482.0 GasA ... Y SBrkr 1482 780 0 2262 1.0 0.0 2 1 4 1 Gd 10 Typ 2 Gd Attchd 2003.0 Fin 3.0 749.0 TA TA Y 168 0 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 305000.0
620 621 30 RL 45.0 8248 Pave Grvl Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 3 3 1914 1950 Gable CompShg Stucco Stucco None 0.0 TA TA BrkTil TA TA No BLQ 41.0 Unf 0.0 823.0 864.0 GasA ... N FuseF 864 0 0 864 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 100 0 0 0 NaN NaN NaN 0 9 2008 WD Normal 67000.0
621 622 60 RL 90.0 10800 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 6 7 1974 1997 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No ALQ 956.0 Rec 182.0 384.0 1522.0 GasA ... Y SBrkr 1548 1066 0 2614 0.0 0.0 2 1 4 1 TA 9 Typ 1 TA Attchd 1974.0 RFn 2.0 624.0 TA TA Y 38 243 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 240000.0
622 623 20 RL 71.0 7064 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 6 1977 1977 Gable CompShg Plywood Plywood BrkFace 153.0 TA TA CBlock TA TA No BLQ 560.0 Unf 0.0 420.0 980.0 GasA ... Y SBrkr 980 0 0 980 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1986.0 Unf 2.0 484.0 TA TA Y 192 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 135000.0
623 624 160 FV NaN 2117 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 2Story 6 5 2000 2000 Gable CompShg MetalSd MetalSd BrkFace 513.0 Gd TA PConc Gd TA No GLQ 420.0 Unf 0.0 336.0 756.0 GasA ... Y SBrkr 756 756 0 1512 0.0 0.0 2 1 2 1 Gd 4 Typ 1 TA Detchd 2000.0 Unf 2.0 440.0 TA TA Y 0 32 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 168500.0
624 625 60 RL 80.0 10400 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 6 5 1972 1972 Gable CompShg VinylSd VinylSd None 288.0 TA TA CBlock TA TA No Rec 247.0 Unf 0.0 485.0 732.0 GasA ... Y SBrkr 1012 778 0 1790 1.0 0.0 1 2 4 1 TA 8 Min2 1 TA Attchd 1972.0 RFn 2.0 484.0 TA TA Y 148 0 0 0 147 0 NaN NaN NaN 0 11 2006 WD Normal 165150.0
625 626 20 RL 87.0 10000 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 6 1962 1962 Hip CompShg Wd Sdng Wd Sdng BrkFace 261.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1116.0 1116.0 GasA ... Y SBrkr 1116 0 0 1116 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Attchd 1962.0 Unf 2.0 440.0 TA TA Y 0 0 0 0 385 0 NaN NaN NaN 0 2 2010 WD Normal 160000.0
626 627 20 RL NaN 12342 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1960 1978 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 978.0 978.0 GasA ... Y SBrkr 1422 0 0 1422 0.0 0.0 1 0 3 1 TA 6 Min1 1 TA Attchd 1960.0 RFn 1.0 286.0 TA TA Y 0 0 36 0 0 0 NaN GdWo Shed 600 8 2007 WD Normal 139900.0
627 628 80 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 6 6 1955 1972 Gable CompShg AsbShng AsbShng BrkFace 164.0 TA TA CBlock TA TA Av BLQ 674.0 LwQ 132.0 350.0 1156.0 GasA ... Y SBrkr 1520 0 0 1520 1.0 0.0 1 0 3 1 TA 7 Typ 2 Gd Basment 1955.0 RFn 1.0 364.0 TA TA Y 0 0 189 0 0 0 NaN NaN NaN 0 3 2010 WD Normal 153000.0
628 629 60 RL 70.0 11606 Pave NaN IR1 HLS AllPub Inside Sev NAmes Norm Norm 1Fam 2Story 5 5 1969 1969 Gable CompShg Plywood Plywood BrkFace 192.0 TA TA PConc Gd TA Av Rec 650.0 Unf 0.0 390.0 1040.0 GasA ... Y SBrkr 1040 1040 0 2080 0.0 1.0 1 2 5 1 Fa 9 Typ 2 TA Attchd 1969.0 Unf 2.0 504.0 TA TA Y 335 0 0 0 0 0 NaN NaN NaN 0 9 2007 WD Family 135000.0
629 630 80 RL 82.0 9020 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Feedr Norm 1Fam SLvl 6 5 1964 1964 Gable WdShngl Plywood Wd Sdng BrkFace 259.0 TA TA CBlock TA TA Gd GLQ 624.0 Rec 336.0 288.0 1248.0 GasA ... Y SBrkr 1350 0 0 1350 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1964.0 RFn 2.0 520.0 TA TA Y 176 0 0 0 0 0 NaN GdPrv NaN 0 6 2008 WD Normal 168500.0
630 631 70 RM 50.0 9000 Pave Grvl Reg Lvl AllPub Corner Gtl OldTown Artery Norm 1Fam 2Story 5 6 1880 1991 Gable CompShg VinylSd VinylSd None 0.0 TA TA BrkTil Fa Fa No Unf 0.0 Unf 0.0 636.0 636.0 GasA ... Y FuseA 1089 661 0 1750 0.0 0.0 1 0 3 1 Ex 8 Typ 0 NaN Detchd 1937.0 Unf 1.0 240.0 Fa Po N 0 0 293 0 0 0 NaN MnPrv NaN 0 6 2006 WD Abnorml 124000.0
631 632 120 RL 34.0 4590 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm Twnhs 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd Stone 108.0 Gd TA PConc Gd Gd Mn GLQ 24.0 Unf 0.0 1530.0 1554.0 GasA ... Y SBrkr 1554 0 0 1554 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2006.0 RFn 2.0 627.0 TA TA Y 156 73 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 209500.0
632 633 20 RL 85.0 11900 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 7 5 1977 1977 Hip CompShg Plywood Plywood BrkFace 209.0 TA Gd CBlock TA TA No ALQ 822.0 Unf 0.0 564.0 1386.0 GasA ... Y SBrkr 1411 0 0 1411 0.0 0.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1977.0 Fin 2.0 544.0 TA TA Y 192 0 0 0 0 0 NaN NaN NaN 0 4 2009 WD Family 82500.0
633 634 20 RL 80.0 9250 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 7 1954 2005 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No BLQ 480.0 LwQ 468.0 108.0 1056.0 GasA ... Y SBrkr 1056 0 0 1056 0.0 1.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1954.0 Unf 1.0 260.0 TA TA Y 390 0 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 139400.0
634 635 90 RL 64.0 6979 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm Duplex SFoyer 6 5 1980 1980 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No GLQ 1056.0 Unf 0.0 0.0 1056.0 GasA ... Y SBrkr 1056 0 0 1056 2.0 0.0 0 0 0 2 TA 4 Typ 0 NaN Detchd 1980.0 Unf 2.0 576.0 TA TA Y 264 56 0 0 0 0 NaN GdPrv Shed 600 6 2010 WD Normal 144000.0
635 636 190 RH 60.0 10896 Pave Pave Reg Bnk AllPub Inside Gtl SWISU Feedr Norm 2fmCon 2.5Fin 6 7 1914 1995 Hip CompShg VinylSd VinylSd None 0.0 Fa TA CBlock TA Fa No LwQ 256.0 Unf 0.0 1184.0 1440.0 GasA ... Y FuseA 1440 1440 515 3395 0.0 0.0 2 0 8 2 Fa 14 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 110 0 0 0 0 NaN NaN NaN 0 3 2007 WD Abnorml 200000.0
636 637 30 RM 51.0 6120 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 2 3 1936 1950 Gable CompShg AsbShng AsbShng None 0.0 Fa Fa BrkTil TA Fa No Unf 0.0 Unf 0.0 264.0 264.0 Grav ... N FuseA 800 0 0 800 0.0 0.0 1 0 1 1 Fa 4 Maj1 1 Po NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 0 0 0 0 NaN NaN NaN 0 1 2009 ConLw Normal 60000.0
637 638 190 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 2fmCon 1.5Fin 5 4 1954 1954 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 811.0 811.0 GasA ... Y FuseA 811 576 0 1387 0.0 0.0 2 0 3 2 Gd 7 Typ 0 NaN BuiltIn 1954.0 Unf 1.0 256.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal 93000.0
638 639 30 RL 67.0 8777 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Feedr Norm 1Fam 1Story 5 7 1910 1950 Gable CompShg MetalSd Wd Sdng None 0.0 TA TA CBlock Fa TA No Unf 0.0 Unf 0.0 796.0 796.0 GasA ... Y FuseA 796 0 0 796 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN P 328 0 164 0 0 0 NaN MnPrv NaN 0 5 2008 WD Normal 85000.0
639 640 120 RL 53.0 3982 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 8 5 2006 2006 Hip CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd Gd Av GLQ 1154.0 Unf 0.0 366.0 1520.0 GasA ... Y SBrkr 1567 0 0 1567 1.0 0.0 2 0 1 1 Ex 7 Typ 1 Gd Attchd 2006.0 Fin 3.0 648.0 TA TA Y 312 0 0 0 0 0 NaN NaN NaN 0 10 2006 New Partial 264561.0
640 641 120 RL 62.0 12677 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 8 5 2003 2004 Hip CompShg MetalSd MetalSd BrkFace 472.0 Ex TA PConc Ex TA Gd GLQ 1218.0 Unf 0.0 300.0 1518.0 GasA ... Y SBrkr 1518 0 0 1518 0.0 0.0 1 1 1 1 Ex 6 Typ 1 Gd Attchd 2003.0 RFn 2.0 588.0 TA TA Y 185 140 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal 274000.0
641 642 60 FV NaN 7050 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 2001 2001 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 738.0 Unf 0.0 319.0 1057.0 GasA ... Y SBrkr 1057 872 0 1929 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 2001.0 Fin 2.0 650.0 TA TA Y 0 235 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 226000.0
642 643 80 RL 75.0 13860 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 8 7 1972 1995 Gable CompShg Plywood Wd Sdng None 0.0 Gd TA CBlock Gd TA Gd GLQ 1410.0 Unf 0.0 542.0 1952.0 GasA ... Y SBrkr 2000 704 0 2704 1.0 0.0 2 1 4 1 Ex 9 Typ 3 TA Attchd 1972.0 Fin 2.0 538.0 TA TA Y 269 111 0 0 0 0 NaN MnPrv NaN 0 7 2009 WD Normal 345000.0
643 644 60 RL 80.0 10793 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes RRAn Norm 1Fam 2Story 5 5 1969 1969 Mansard CompShg WdShing HdBoard BrkFace 263.0 TA TA CBlock TA TA No Rec 493.0 BLQ 287.0 0.0 780.0 GasA ... Y SBrkr 780 840 0 1620 0.0 0.0 2 1 4 1 TA 7 Min1 0 NaN Attchd 1969.0 Fin 2.0 462.0 TA TA Y 208 0 0 0 0 0 NaN GdWo NaN 0 4 2007 WD Normal 152000.0
644 645 20 FV 85.0 9187 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 9 5 2009 2009 Gable CompShg CemntBd CmentBd Stone 162.0 Ex TA PConc Ex TA Mn GLQ 1121.0 Unf 0.0 645.0 1766.0 GasA ... Y SBrkr 1766 0 0 1766 1.0 0.0 2 1 2 1 Ex 7 Typ 1 Gd Attchd 2009.0 Fin 3.0 478.0 TA TA Y 195 130 0 0 0 0 NaN NaN NaN 0 10 2009 New Partial 370878.0
645 646 20 RL NaN 10530 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 5 1971 1971 Hip CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No ALQ 282.0 LwQ 35.0 664.0 981.0 GasA ... Y SBrkr 981 0 0 981 1.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Detchd 1979.0 Unf 2.0 576.0 TA TA Y 0 312 40 0 0 0 NaN NaN NaN 0 3 2007 WD Normal 143250.0
646 647 20 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1950 1950 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1048 0 0 1048 0.0 0.0 1 0 3 1 TA 7 Min1 0 NaN Detchd 1950.0 Unf 2.0 420.0 TA TA Y 0 27 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 98300.0
647 648 20 RL 85.0 10452 Pave NaN IR1 Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 6 5 1953 1953 Hip CompShg Wd Sdng Wd Sdng Stone 216.0 TA TA CBlock TA TA Mn Rec 500.0 Unf 0.0 594.0 1094.0 GasA ... Y SBrkr 1094 0 0 1094 0.0 0.0 1 0 3 1 TA 5 Typ 2 Gd Attchd 1953.0 RFn 2.0 495.0 TA TA Y 0 0 0 0 287 0 NaN NaN NaN 0 6 2008 WD Normal 155000.0
648 649 60 RL 70.0 7700 Pave NaN Reg Lvl AllPub Inside Gtl NAmes PosN Norm 1Fam 2Story 6 5 1966 1966 Gable CompShg MetalSd MetalSd BrkFace 351.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 756.0 756.0 GasA ... Y SBrkr 1051 788 0 1839 0.0 0.0 1 1 4 1 TA 7 Typ 1 TA Attchd 1966.0 Unf 2.0 442.0 TA TA Y 0 124 216 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 155000.0
649 650 180 RM 21.0 1936 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs SFoyer 4 6 1970 1970 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock Gd TA Av BLQ 131.0 GLQ 499.0 0.0 630.0 GasA ... Y SBrkr 630 0 0 630 1.0 0.0 1 0 1 1 TA 3 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN MnPrv NaN 0 12 2007 WD Normal 84500.0
650 651 60 FV 65.0 8125 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 6 2007 2007 Gable CompShg CemntBd CmentBd NaN NaN Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 813.0 813.0 GasA ... Y SBrkr 822 843 0 1665 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2007.0 RFn 2.0 562.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 205950.0
651 652 70 RL 60.0 9084 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Artery Norm 1Fam 2Story 4 5 1940 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA Mn Unf 0.0 Unf 0.0 755.0 755.0 GasA ... Y SBrkr 755 755 0 1510 1.0 0.0 1 0 4 1 TA 7 Typ 1 Gd Detchd 1940.0 Unf 1.0 296.0 Fa Po P 120 0 0 0 0 0 NaN MnPrv NaN 0 10 2009 WD Normal 108000.0
652 653 60 RL 70.0 8750 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1996 1996 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 880.0 880.0 GasA ... Y SBrkr 909 807 0 1716 0.0 0.0 2 1 2 1 Gd 7 Typ 1 TA Attchd 1996.0 RFn 2.0 512.0 TA TA Y 0 120 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 191000.0
653 654 50 RM 60.0 10320 Pave Grvl Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 6 7 1906 1995 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 756.0 756.0 GasA ... Y SBrkr 756 713 0 1469 0.0 0.0 1 0 3 1 TA 7 Typ 0 NaN Detchd 1906.0 Unf 1.0 216.0 TA TA Y 57 0 239 0 0 0 NaN MnPrv NaN 0 6 2008 WD Normal 135000.0
654 655 20 RL 91.0 10437 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 1Story 8 6 1995 1995 Hip CompShg MetalSd MetalSd BrkFace 660.0 Gd Gd PConc Gd TA Gd GLQ 1696.0 Unf 0.0 413.0 2109.0 GasA ... Y SBrkr 2113 0 0 2113 1.0 0.0 2 1 2 1 Gd 7 Typ 1 TA Attchd 1995.0 Fin 3.0 839.0 TA TA Y 236 46 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 350000.0
655 656 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 5 1971 1971 Gable CompShg HdBoard ImStucc BrkFace 381.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 525.0 525.0 GasA ... Y SBrkr 525 567 0 1092 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1971.0 Unf 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2010 WD Family 88000.0
656 657 20 RL 72.0 10007 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1959 2006 Gable CompShg HdBoard HdBoard BrkFace 54.0 Gd TA CBlock TA TA No ALQ 806.0 Unf 0.0 247.0 1053.0 GasA ... Y SBrkr 1053 0 0 1053 1.0 0.0 1 1 3 1 Gd 5 Typ 0 NaN Attchd 1959.0 RFn 1.0 312.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 8 2008 WD Normal 145500.0
657 658 70 RL 60.0 7200 Pave NaN Reg HLS AllPub Inside Mod Crawfor Norm Norm 1Fam 2Story 7 6 1931 2000 Gable CompShg Stucco Wd Shng None 0.0 TA Fa BrkTil Gd TA No Unf 0.0 Unf 0.0 776.0 776.0 GasA ... Y SBrkr 851 651 0 1502 0.0 0.0 1 1 3 1 TA 6 Typ 1 Gd Attchd 1931.0 RFn 1.0 270.0 TA TA P 0 0 112 0 0 0 NaN MnPrv NaN 0 2 2008 WD Normal 149000.0
658 659 50 RL 78.0 17503 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Artery Norm 1Fam 1.5Fin 6 5 1948 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 912.0 912.0 GasA ... Y SBrkr 912 546 0 1458 0.0 1.0 1 0 3 1 TA 6 Typ 1 Gd Attchd 1948.0 Unf 1.0 330.0 TA TA Y 192 0 0 0 0 0 NaN NaN NaN 0 1 2010 WD Abnorml 97500.0
659 660 20 RL 75.0 9937 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 1Story 5 7 1964 1999 Hip CompShg MetalSd MetalSd None 0.0 TA Gd PConc TA TA No BLQ 637.0 Unf 0.0 849.0 1486.0 GasA ... Y SBrkr 1486 0 0 1486 1.0 0.0 1 0 3 1 TA 7 Typ 0 NaN Detchd 1968.0 Fin 2.0 480.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 3 2009 WD Normal 167000.0
660 661 60 RL NaN 12384 Pave NaN Reg Lvl AllPub CulDSac Gtl NWAmes Norm Norm 1Fam 2Story 7 7 1976 1976 Gable CompShg Plywood Plywood BrkFace 233.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 793.0 793.0 GasA ... Y SBrkr 1142 793 0 1935 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1976.0 RFn 2.0 550.0 TA TA Y 0 113 252 0 0 0 NaN NaN NaN 0 11 2007 WD Normal 197900.0
661 662 60 RL 52.0 46589 Pave NaN IR2 Lvl AllPub CulDSac Gtl NoRidge Norm Norm 1Fam 2Story 8 7 1994 2005 Hip CompShg VinylSd VinylSd BrkFace 528.0 Gd TA PConc Gd Gd No GLQ 1361.0 Rec 180.0 88.0 1629.0 GasA ... Y SBrkr 1686 762 0 2448 1.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Attchd 1994.0 RFn 3.0 711.0 TA TA Y 517 76 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 402000.0
662 663 20 RL 120.0 13560 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 3 1968 1968 Hip CompShg Wd Sdng Wd Sdng BrkFace 216.0 TA TA CBlock Fa Fa No Unf 0.0 Unf 0.0 1392.0 1392.0 GasA ... Y SBrkr 1392 0 0 1392 1.0 0.0 1 0 2 1 TA 5 Maj2 2 TA Attchd 1968.0 RFn 2.0 576.0 TA TA Y 0 0 240 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 110000.0
663 664 85 RL 90.0 10012 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam SFoyer 4 5 1972 1972 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA Av BLQ 920.0 Rec 180.0 38.0 1138.0 GasA ... Y SBrkr 1181 0 0 1181 1.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Detchd 1974.0 RFn 2.0 588.0 TA TA Y 0 0 180 0 0 0 NaN MnPrv NaN 0 4 2008 WD Normal 137500.0
664 665 20 RL 49.0 20896 Pave NaN IR2 Lvl AllPub CulDSac Gtl Somerst RRAn Norm 1Fam 1Story 8 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA Mn GLQ 1721.0 Unf 0.0 356.0 2077.0 GasA ... Y SBrkr 2097 0 0 2097 1.0 0.0 1 1 1 1 Ex 8 Typ 1 Ex Attchd 2005.0 Fin 3.0 1134.0 TA TA Y 192 267 0 0 0 0 NaN NaN NaN 0 1 2006 New Partial 423000.0
665 666 60 RL 106.0 11194 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 8 5 2000 2000 Gable CompShg VinylSd VinylSd BrkFace 40.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1406.0 1406.0 GasA ... Y SBrkr 1454 482 0 1936 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 2000.0 RFn 2.0 504.0 TA TA Y 188 124 0 0 0 0 NaN NaN NaN 0 11 2006 WD Normal 230500.0
666 667 60 RL NaN 18450 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 2Story 6 5 1965 1979 Flat Tar&Grv Plywood Plywood BrkCmn 113.0 TA Gd CBlock Gd TA No LwQ 187.0 Rec 723.0 111.0 1021.0 GasA ... Y SBrkr 1465 915 0 2380 0.0 0.0 2 1 3 1 TA 7 Sev 1 Po CarPort 1965.0 Unf 2.0 596.0 TA TA Y 0 265 0 0 0 0 NaN NaN NaN 0 8 2007 WD Abnorml 129000.0
667 668 20 RL 65.0 8125 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 6 5 1994 1998 Gable CompShg HdBoard HdBoard BrkFace 258.0 TA TA PConc Gd TA No GLQ 1138.0 Unf 0.0 270.0 1408.0 GasA ... Y SBrkr 1679 0 0 1679 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Fa Attchd 1994.0 RFn 2.0 575.0 TA TA Y 224 42 0 0 0 0 NaN NaN NaN 0 10 2008 WD Normal 193500.0
668 669 20 RL NaN 14175 Pave NaN Reg Bnk AllPub Corner Mod Sawyer Norm Norm 1Fam 1Story 5 6 1956 1987 Gable CompShg CemntBd Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 988.0 Unf 0.0 200.0 1188.0 GasA ... Y SBrkr 1437 0 0 1437 1.0 0.0 1 1 3 1 TA 6 Min2 1 TA Detchd 1999.0 Unf 2.0 576.0 TA TA Y 304 0 0 0 0 0 NaN NaN NaN 0 11 2006 WD Normal 168000.0
669 670 30 RL 80.0 11600 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 4 5 1922 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil Fa TA No Unf 0.0 Unf 0.0 700.0 700.0 GasA ... Y SBrkr 1180 0 0 1180 0.0 0.0 1 0 2 1 Fa 5 Typ 1 Gd Detchd 1922.0 Unf 1.0 252.0 TA Fa Y 0 0 67 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 137500.0
670 671 60 RL 64.0 8633 Pave NaN Reg Lvl AllPub FR2 Gtl CollgCr Norm Norm 1Fam 2Story 6 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 193.0 Unf 0.0 545.0 738.0 GasA ... Y SBrkr 738 738 0 1476 1.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2005.0 Fin 2.0 540.0 TA TA Y 100 35 0 0 0 0 NaN NaN NaN 0 2 2009 WD Normal 173500.0
671 672 70 RH 54.0 6629 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Artery Norm 1Fam 2Story 6 6 1925 1950 Gambrel CompShg Wd Sdng Wd Sdng None 0.0 TA Gd BrkTil TA TA No BLQ 551.0 Unf 0.0 121.0 672.0 GasA ... N SBrkr 697 672 0 1369 1.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Detchd 1930.0 Unf 1.0 300.0 TA TA Y 147 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 103600.0
672 673 20 RL NaN 11250 Pave NaN IR1 Lvl AllPub Inside Gtl Veenker Norm Norm 1Fam 1Story 6 6 1977 1977 Gable CompShg Plywood Plywood None 0.0 Gd TA CBlock Gd TA No ALQ 767.0 Unf 0.0 441.0 1208.0 GasA ... Y SBrkr 1208 0 0 1208 1.0 0.0 1 1 3 1 TA 6 Typ 1 TA Attchd 1977.0 RFn 2.0 546.0 TA TA Y 198 42 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 165000.0
673 674 20 RL 110.0 14442 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 6 7 1957 2004 Hip CompShg CemntBd CmentBd BrkFace 106.0 TA TA PConc TA TA No GLQ 1186.0 Unf 0.0 291.0 1477.0 GasA ... Y SBrkr 1839 0 0 1839 1.0 0.0 2 0 3 1 Gd 7 Typ 2 TA Attchd 1957.0 Fin 2.0 416.0 TA TA Y 0 87 0 0 200 0 NaN NaN NaN 0 6 2007 WD Normal 257500.0
674 675 20 RL 80.0 9200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1965 1965 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Rec 892.0 Unf 0.0 244.0 1136.0 GasA ... Y SBrkr 1136 0 0 1136 1.0 0.0 1 0 3 1 TA 5 Typ 1 Gd Attchd 1965.0 RFn 1.0 384.0 TA TA Y 426 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 140000.0
675 676 160 RL 24.0 2289 Pave NaN Reg Lvl AllPub Inside Gtl NPkVill Norm Norm Twnhs 2Story 6 6 1978 1978 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock TA TA No ALQ 311.0 Unf 0.0 544.0 855.0 GasA ... Y SBrkr 855 586 0 1441 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1978.0 Unf 2.0 440.0 TA TA Y 28 0 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal 148500.0
676 677 70 RM 60.0 9600 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 4 2 1900 1950 Gable CompShg AsbShng Stucco None 0.0 TA TA BrkTil TA Fa No Unf 0.0 Unf 0.0 1095.0 1095.0 GasW ... N SBrkr 1095 679 0 1774 1.0 0.0 2 0 4 2 TA 8 Min2 0 NaN 2Types 1920.0 Unf 3.0 779.0 Fa Fa N 0 0 90 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 87000.0
677 678 30 RL 52.0 9022 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 8 1924 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA BrkTil TA TA No Unf 0.0 Unf 0.0 768.0 768.0 GasA ... Y SBrkr 792 0 0 792 0.0 0.0 1 0 2 1 Gd 5 Typ 0 NaN Detchd 1924.0 Unf 1.0 240.0 Fa Fa N 316 0 120 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 109500.0
678 679 20 RL 80.0 11844 Pave NaN IR1 Lvl AllPub Inside Gtl StoneBr Norm Norm 1Fam 1Story 8 5 2008 2008 Hip CompShg VinylSd VinylSd Stone 464.0 Gd TA PConc Ex TA Mn Unf 0.0 Unf 0.0 2046.0 2046.0 GasA ... Y SBrkr 2046 0 0 2046 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2008.0 Fin 3.0 834.0 TA TA Y 322 82 0 0 0 0 NaN NaN NaN 0 7 2009 New Partial 372500.0
679 680 20 RL NaN 9945 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1961 1961 Hip CompShg Wd Sdng Wd Sdng BrkFace 57.0 TA TA CBlock TA TA No Rec 827.0 Unf 0.0 161.0 988.0 GasA ... Y SBrkr 988 0 0 988 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1963.0 Unf 2.0 572.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2007 WD Normal 128500.0
680 681 120 RL 50.0 8012 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm TwnhsE 1Story 6 5 1980 1980 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA No BLQ 543.0 BLQ 119.0 261.0 923.0 GasA ... Y SBrkr 923 0 0 923 0.0 0.0 2 0 2 1 TA 5 Typ 1 TA Attchd 1980.0 RFn 1.0 264.0 TA TA Y 80 0 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 143000.0
681 682 50 RH 55.0 4500 Pave Pave IR2 Bnk AllPub Inside Gtl SWISU Norm Norm 1Fam 1.5Fin 5 5 1932 2000 Gable CompShg VinylSd Stucco None 0.0 TA TA BrkTil TA TA No Rec 182.0 Unf 0.0 611.0 793.0 GasA ... Y SBrkr 848 672 0 1520 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1968.0 Unf 1.0 281.0 TA TA Y 0 0 56 0 0 0 NaN NaN NaN 0 7 2009 WD Abnorml 159434.0
682 683 120 RL NaN 2887 Pave NaN Reg HLS AllPub Inside Gtl ClearCr Norm Norm 1Fam 1Story 6 5 1996 1997 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc Gd TA Mn GLQ 1003.0 Unf 0.0 288.0 1291.0 GasA ... Y SBrkr 1291 0 0 1291 1.0 0.0 1 0 2 1 Gd 6 Typ 1 Gd Attchd 1996.0 Unf 2.0 431.0 TA TA Y 307 0 0 0 0 0 NaN NaN NaN 0 11 2008 WD Normal 173000.0
683 684 20 RL 90.0 11248 Pave NaN IR1 Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 9 5 2002 2002 Hip CompShg VinylSd VinylSd Stone 215.0 Gd TA PConc Gd TA Av GLQ 1059.0 Unf 0.0 567.0 1626.0 GasA ... Y SBrkr 1668 0 0 1668 1.0 0.0 2 0 3 1 Gd 7 Typ 1 TA Attchd 2002.0 Fin 3.0 702.0 TA TA Y 257 45 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 285000.0
684 685 60 RL 58.0 16770 Pave NaN IR2 Lvl AllPub CulDSac Gtl NoRidge Norm Norm 1Fam 2Story 7 5 1998 1998 Gable CompShg VinylSd VinylSd BrkFace 30.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1195.0 1195.0 GasA ... Y SBrkr 1195 644 0 1839 0.0 0.0 2 1 4 1 TA 7 Typ 0 NaN Attchd 1998.0 Fin 2.0 486.0 TA TA Y 0 81 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 221000.0
685 686 160 RL NaN 5062 Pave NaN IR1 Lvl AllPub CulDSac Gtl StoneBr Norm Norm TwnhsE 2Story 7 5 1984 1984 Gable CompShg HdBoard HdBoard None 0.0 Gd TA CBlock Gd TA Mn GLQ 828.0 LwQ 182.0 180.0 1190.0 GasA ... Y SBrkr 1190 900 0 2090 1.0 0.0 2 0 3 1 Gd 6 Min1 1 TA Attchd 1984.0 Fin 2.0 577.0 TA TA Y 219 0 0 0 0 0 NaN NaN NaN 0 9 2007 WD Normal 207500.0
686 687 60 FV 84.0 10207 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 6 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 874.0 874.0 GasA ... Y SBrkr 874 887 0 1761 0.0 0.0 3 0 3 1 Gd 7 Typ 0 NaN Attchd 2007.0 Fin 2.0 578.0 TA TA Y 144 105 0 0 0 0 NaN NaN NaN 0 8 2007 New Partial 227875.0
687 688 160 FV NaN 5105 Pave NaN IR2 Lvl AllPub FR2 Gtl Somerst Norm Norm TwnhsE 2Story 7 5 2004 2004 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No GLQ 239.0 Unf 0.0 312.0 551.0 GasA ... Y SBrkr 551 551 0 1102 0.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Detchd 2004.0 Unf 2.0 480.0 TA TA Y 0 60 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal 148800.0
688 689 20 RL 60.0 8089 Pave NaN Reg HLS AllPub Inside Gtl StoneBr Norm Norm 1Fam 1Story 8 6 2007 2007 Gable CompShg MetalSd MetalSd BrkFace 0.0 Gd TA PConc Gd TA Av GLQ 945.0 Unf 0.0 474.0 1419.0 GasA ... Y SBrkr 1419 0 0 1419 1.0 0.0 2 0 2 1 Gd 7 Typ 1 Gd Attchd 2007.0 RFn 2.0 567.0 TA TA Y 140 0 0 0 0 0 NaN NaN NaN 0 10 2007 New Partial 392000.0
689 690 120 RL 61.0 7577 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm TwnhsE 1Story 6 5 2005 2006 Gable CompShg VinylSd VinylSd Stone 256.0 Gd TA PConc Gd TA Av ALQ 20.0 Unf 0.0 1342.0 1362.0 GasA ... Y SBrkr 1362 0 0 1362 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2005.0 RFn 2.0 460.0 TA TA Y 192 28 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 194700.0
690 691 120 RM NaN 4426 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm TwnhsE 1Story 6 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 147.0 Gd TA PConc Gd TA Gd GLQ 697.0 Unf 0.0 151.0 848.0 GasA ... Y SBrkr 848 0 0 848 1.0 0.0 1 0 1 1 Gd 3 Typ 1 TA Attchd 2004.0 RFn 2.0 420.0 TA TA Y 149 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 141000.0
691 692 60 RL 104.0 21535 Pave NaN IR1 Lvl AllPub Corner Gtl NoRidge Norm Norm 1Fam 2Story 10 6 1994 1995 Gable WdShngl HdBoard HdBoard BrkFace 1170.0 Ex TA PConc Ex TA Gd GLQ 1455.0 Unf 0.0 989.0 2444.0 GasA ... Y SBrkr 2444 1872 0 4316 0.0 1.0 3 1 4 1 Ex 10 Typ 2 Ex Attchd 1994.0 Fin 3.0 832.0 TA TA Y 382 50 0 0 0 0 NaN NaN NaN 0 1 2007 WD Normal 755000.0
692 693 60 RL 42.0 26178 Pave NaN IR1 Lvl AllPub Inside Mod Timber Norm Norm 1Fam 2Story 7 5 1989 1990 Hip CompShg MetalSd MetalSd BrkFace 293.0 Gd TA PConc Gd TA Gd GLQ 965.0 Unf 0.0 245.0 1210.0 GasA ... Y SBrkr 1238 1281 0 2519 1.0 0.0 2 1 4 1 Gd 9 Typ 2 Gd Attchd 1989.0 RFn 2.0 628.0 TA TA Y 320 27 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 335000.0
693 694 30 RL 60.0 5400 Pave NaN Reg Lvl AllPub Corner Sev OldTown Norm Norm 1Fam 1Story 5 6 1921 1968 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 1073.0 1073.0 GasA ... Y SBrkr 1073 0 0 1073 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1968.0 Unf 1.0 326.0 TA TA Y 0 0 112 0 0 0 NaN NaN NaN 0 12 2006 WD Abnorml 108480.0
694 695 50 RM 51.0 6120 Pave NaN Reg Lvl AllPub Corner Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 6 1936 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Fa BrkTil TA TA No Unf 0.0 Unf 0.0 927.0 927.0 GasA ... Y SBrkr 1067 472 0 1539 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Detchd 1995.0 Unf 2.0 576.0 TA TA Y 112 0 0 0 0 0 NaN MnPrv NaN 0 4 2009 WD Normal 141500.0
695 696 20 RL 54.0 13811 Pave NaN IR1 Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 6 6 1987 1987 Gable CompShg HdBoard HdBoard BrkFace 72.0 TA TA CBlock Gd Gd No GLQ 980.0 LwQ 40.0 92.0 1112.0 GasA ... Y SBrkr 1137 0 0 1137 1.0 0.0 2 0 2 1 Gd 5 Typ 1 TA Attchd 1987.0 Unf 2.0 551.0 TA TA Y 125 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 176000.0
696 697 30 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 5 7 1921 1950 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA CBlock TA TA No LwQ 616.0 Unf 0.0 0.0 616.0 GasA ... Y SBrkr 616 0 0 616 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1921.0 Unf 1.0 205.0 TA TA Y 0 0 129 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 89000.0
697 698 20 RL 57.0 6420 Pave NaN IR1 Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 7 1952 1952 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc Ex Gd Mn LwQ 210.0 ALQ 551.0 219.0 980.0 GasA ... Y FuseA 1148 0 0 1148 0.0 1.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1952.0 Unf 1.0 308.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 9 2006 WD Normal 123500.0
698 699 20 RL 65.0 8450 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer RRAe Norm 1Fam 1Story 5 8 1965 2009 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No GLQ 553.0 BLQ 117.0 224.0 894.0 GasA ... Y SBrkr 894 0 0 894 1.0 0.0 1 0 3 1 TA 5 Typ 1 Gd Detchd 1973.0 Unf 1.0 336.0 TA TA Y 416 144 0 0 0 0 NaN MnPrv NaN 0 4 2010 WD Normal 138500.0
699 700 120 FV 59.0 4282 Pave Pave IR2 Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 1Story 7 5 2004 2004 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA Mn GLQ 16.0 Unf 0.0 1375.0 1391.0 GasA ... Y SBrkr 1391 0 0 1391 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 2004.0 RFn 2.0 530.0 TA TA Y 156 158 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 196000.0
700 701 20 RL 85.0 14331 Pave NaN Reg Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2002 2002 Hip CompShg VinylSd VinylSd BrkFace 630.0 Gd TA PConc Ex TA Gd GLQ 1274.0 Unf 0.0 526.0 1800.0 GasA ... Y SBrkr 1800 0 0 1800 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2002.0 Fin 3.0 765.0 TA TA Y 270 78 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 312500.0
701 702 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 7 5 1969 1969 Hip CompShg HdBoard HdBoard BrkFace 168.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1164.0 1164.0 GasA ... Y SBrkr 1164 0 0 1164 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1969.0 Unf 2.0 528.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 COD Normal 140000.0
702 703 60 RL 82.0 12438 Pave NaN IR1 Lvl AllPub Inside Gtl StoneBr Norm Norm 1Fam 2Story 8 5 2006 2006 Hip CompShg VinylSd VinylSd BrkFace 466.0 Ex TA PConc Ex Gd No Unf 0.0 Unf 0.0 1234.0 1234.0 GasA ... Y SBrkr 1264 1312 0 2576 0.0 0.0 2 1 4 1 Ex 10 Typ 1 Gd BuiltIn 2006.0 Fin 3.0 666.0 TA TA Y 324 100 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial 361919.0
703 704 190 RM 76.0 7630 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Feedr Norm 2fmCon 2Story 5 9 1900 1996 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd BrkTil Gd TA No Unf 0.0 Unf 0.0 360.0 360.0 GasA ... Y SBrkr 1032 780 0 1812 0.0 0.0 2 0 4 2 Gd 8 Typ 1 Po Detchd 1999.0 Unf 2.0 672.0 TA TA N 344 0 40 0 0 0 NaN MnPrv NaN 0 5 2010 WD Normal 140000.0
704 705 20 RL 70.0 8400 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2004 2005 Gable CompShg VinylSd VinylSd BrkFace 109.0 Gd TA PConc Gd TA Av GLQ 712.0 Unf 0.0 761.0 1473.0 GasA ... Y SBrkr 1484 0 0 1484 1.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2004.0 RFn 2.0 606.0 TA TA Y 0 35 0 144 0 0 NaN NaN NaN 0 5 2010 WD Normal 213000.0
705 706 190 RM 70.0 5600 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 2fmCon 2Story 4 5 1930 1950 Hip CompShg VinylSd Wd Shng None 0.0 Fa Fa Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N SBrkr 372 720 0 1092 0.0 0.0 2 0 3 2 Fa 7 Mod 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 0 0 0 0 NaN NaN Othr 3500 7 2010 WD Normal 55000.0
706 707 20 RL NaN 115149 Pave NaN IR2 Low AllPub CulDSac Sev ClearCr Norm Norm 1Fam 1Story 7 5 1971 2002 Gable CompShg Plywood Plywood Stone 351.0 TA TA CBlock Gd TA Gd GLQ 1219.0 Unf 0.0 424.0 1643.0 GasA ... Y SBrkr 1824 0 0 1824 1.0 0.0 2 0 2 1 Gd 5 Typ 2 TA Attchd 1971.0 Unf 2.0 739.0 TA TA Y 380 48 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 302000.0
707 708 120 RL 48.0 6240 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 8 5 2006 2006 Hip CompShg MetalSd MetalSd BrkFace 176.0 Gd TA PConc Gd TA No GLQ 863.0 Unf 0.0 461.0 1324.0 GasA ... Y SBrkr 1324 0 0 1324 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2006.0 Fin 2.0 550.0 TA TA Y 192 38 0 0 0 0 NaN NaN NaN 0 12 2009 WD Normal 254000.0
708 709 60 RL 65.0 9018 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2007 2007 Hip CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 728.0 728.0 GasA ... Y SBrkr 728 728 0 1456 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2007.0 Fin 2.0 400.0 TA TA Y 100 24 0 0 0 0 NaN NaN NaN 0 7 2007 New Partial 179540.0
709 710 20 RL NaN 7162 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 7 1966 1966 Gable CompShg HdBoard HdBoard BrkCmn 41.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 876.0 876.0 GasA ... Y SBrkr 904 0 0 904 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1966.0 Unf 1.0 408.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 12 2008 WD Abnorml 109900.0
710 711 30 RL 56.0 4130 Pave NaN IR1 Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 3 6 1935 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA CBlock TA TA No Unf 0.0 Unf 0.0 270.0 270.0 GasA ... Y SBrkr 729 0 0 729 0.0 0.0 1 0 2 1 TA 5 Maj2 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 52000.0
711 712 50 C (all) 66.0 8712 Pave Pave Reg HLS AllPub Inside Mod IDOTRR Norm Norm 1Fam 1.5Fin 4 7 1900 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA Stone TA TA Mn Unf 0.0 Unf 0.0 859.0 859.0 GasA ... Y SBrkr 859 319 0 1178 0.0 0.0 1 0 2 1 TA 7 Typ 0 NaN Detchd 1964.0 RFn 1.0 384.0 TA TA N 68 0 98 0 0 0 NaN NaN NaN 0 1 2010 WD Abnorml 102776.0
712 713 120 RL 40.0 4671 Pave NaN IR1 HLS AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 1988 1989 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA Mn GLQ 767.0 Unf 0.0 461.0 1228.0 GasA ... Y SBrkr 1228 0 0 1228 1.0 0.0 2 0 2 1 Gd 5 Typ 1 Gd Attchd 1988.0 Fin 2.0 472.0 TA TA Y 168 120 0 0 0 0 NaN NaN NaN 0 10 2008 WD Normal 189000.0
713 714 190 RL 60.0 9873 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide RRAn Norm 2fmCon 1Story 4 5 1970 1970 Gable CompShg HdBoard HdBoard BrkFace 160.0 TA TA CBlock TA TA Av ALQ 789.0 Unf 0.0 171.0 960.0 GasW ... N SBrkr 960 0 0 960 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1970.0 Unf 2.0 576.0 TA TA Y 0 288 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 129000.0
714 715 60 RL NaN 13517 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer RRAe Norm 1Fam 2Story 6 8 1976 2005 Gable CompShg HdBoard Plywood BrkFace 289.0 Gd TA CBlock TA TA No GLQ 533.0 Unf 0.0 192.0 725.0 GasA ... Y SBrkr 725 754 0 1479 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 1976.0 RFn 2.0 475.0 TA TA Y 0 44 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal 130500.0
715 716 20 RL 78.0 10140 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 5 1974 1974 Hip CompShg HdBoard HdBoard BrkFace 174.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 1064.0 1064.0 GasA ... Y SBrkr 1350 0 0 1350 0.0 0.0 2 0 3 1 TA 7 Typ 1 TA Attchd 1974.0 RFn 2.0 478.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 8 2009 WD Normal 165000.0
716 717 70 RM 60.0 10800 Pave Grvl Reg Bnk AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 7 8 1890 1998 Gable CompShg Wd Sdng VinylSd None 0.0 TA Gd BrkTil TA TA No Unf 0.0 Unf 0.0 718.0 718.0 GasA ... Y SBrkr 1576 978 0 2554 0.0 0.0 1 1 3 1 TA 8 Typ 0 NaN Detchd 1996.0 Unf 2.0 704.0 TA TA P 0 48 143 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 159500.0
717 718 20 RL 80.0 10000 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 5 6 1973 2000 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA No BLQ 1084.0 Unf 0.0 92.0 1176.0 GasA ... Y SBrkr 1178 0 0 1178 0.0 1.0 1 1 3 1 Gd 5 Typ 1 Fa Attchd 1973.0 Unf 2.0 439.0 TA TA Y 224 0 0 0 0 0 NaN MnPrv NaN 0 11 2008 WD Normal 157000.0
718 719 60 RL 96.0 10542 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 7 5 1993 1994 Hip CompShg Wd Sdng ImStucc BrkFace 651.0 Gd TA PConc Gd TA Gd GLQ 1173.0 Unf 0.0 138.0 1311.0 GasA ... Y SBrkr 1325 1093 0 2418 1.0 0.0 2 1 3 1 Gd 9 Typ 1 TA Attchd 1993.0 RFn 3.0 983.0 TA TA Y 250 154 216 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 341000.0
719 720 20 RL 69.0 9920 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 6 1969 1969 Gable CompShg HdBoard Plywood None 0.0 TA TA CBlock Gd TA Gd ALQ 523.0 Unf 0.0 448.0 971.0 GasA ... Y SBrkr 971 0 0 971 0.0 0.0 1 1 3 1 TA 5 Typ 1 Po Attchd 1969.0 Unf 1.0 300.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 128500.0
720 721 120 RL NaN 6563 Pave NaN IR1 Low AllPub CulDSac Mod StoneBr Norm Norm 1Fam 1Story 8 5 1985 1985 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA Gd GLQ 1148.0 Unf 0.0 594.0 1742.0 GasA ... Y SBrkr 1742 0 0 1742 1.0 0.0 2 0 2 1 Gd 5 Typ 1 TA Attchd 1985.0 RFn 2.0 564.0 TA TA Y 114 28 234 0 0 0 NaN NaN NaN 0 12 2006 WD Normal 275000.0
721 722 120 RM NaN 4426 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm TwnhsE 1Story 6 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 169.0 Gd TA PConc Gd TA Av GLQ 662.0 Unf 0.0 186.0 848.0 GasA ... Y SBrkr 848 0 0 848 1.0 0.0 1 0 1 1 Gd 3 Typ 0 NaN Attchd 2004.0 RFn 2.0 420.0 TA TA Y 160 0 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 143000.0
722 723 20 RL 70.0 8120 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 4 7 1970 1970 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No ALQ 191.0 Unf 0.0 673.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1994.0 Unf 2.0 463.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 124500.0
723 724 50 RL 60.0 8172 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 4 6 1954 1972 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 941.0 941.0 GasA ... Y SBrkr 997 473 0 1470 0.0 0.0 2 0 4 1 TA 7 Typ 0 NaN Detchd 1958.0 Unf 1.0 548.0 TA TA Y 0 0 0 0 156 0 NaN NaN NaN 0 5 2008 WD Normal 135000.0
724 725 20 RL 86.0 13286 Pave NaN IR1 Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 9 5 2007 2008 Hip CompShg CemntBd CmentBd Stone 340.0 Ex TA PConc Ex TA No GLQ 1234.0 Unf 0.0 464.0 1698.0 GasA ... Y SBrkr 1698 0 0 1698 1.0 0.0 2 0 3 1 Ex 8 Typ 1 Gd Attchd 2007.0 Fin 3.0 768.0 TA TA Y 327 64 0 0 0 0 NaN NaN NaN 0 2 2009 WD Normal 320000.0
725 726 20 RL 60.0 6960 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 4 6 1970 1970 Gable CompShg HdBoard Plywood None 0.0 TA TA CBlock TA TA No ALQ 375.0 BLQ 239.0 250.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 3 1 Gd 5 Typ 0 NaN Detchd 1989.0 Unf 2.0 660.0 TA TA Y 96 0 0 0 0 0 NaN NaN Shed 500 11 2009 WD Normal 120500.0
726 727 20 RL NaN 21695 Pave NaN IR1 Lvl AllPub Corner Gtl Crawfor Norm Norm 1Fam 1Story 6 9 1988 2007 Hip CompShg Wd Sdng Plywood BrkFace 260.0 Gd Gd CBlock Gd TA No GLQ 808.0 Unf 0.0 72.0 880.0 GasA ... Y SBrkr 1680 0 0 1680 1.0 0.0 2 0 3 1 Gd 5 Typ 1 Gd Attchd 1988.0 Fin 2.0 540.0 TA TA Y 292 44 0 182 0 0 NaN NaN NaN 0 12 2009 WD Normal 222000.0
727 728 20 RL 64.0 7314 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 82.0 Gd TA PConc Gd TA Av GLQ 724.0 Unf 0.0 508.0 1232.0 GasA ... Y SBrkr 1232 0 0 1232 1.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 2007.0 RFn 2.0 632.0 TA TA Y 132 0 0 0 0 0 NaN NaN NaN 0 2 2009 WD Normal 194500.0
728 729 90 RL 85.0 11475 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm Duplex 1Story 5 5 1958 1958 Gable CompShg VinylSd VinylSd BrkFace 95.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1584.0 1584.0 GasA ... Y SBrkr 1776 0 0 1776 1.0 0.0 2 0 4 2 TA 9 Typ 0 NaN Detchd 1968.0 Unf 3.0 888.0 TA TA Y 0 25 0 0 0 0 NaN NaN NaN 0 7 2009 COD Abnorml 110000.0
729 730 30 RM 52.0 6240 Pave Grvl Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 4 5 1925 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No BLQ 152.0 Unf 0.0 628.0 780.0 GasA ... Y FuseA 848 0 360 1208 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1962.0 Unf 2.0 539.0 TA TA Y 0 23 112 0 0 0 NaN NaN NaN 0 1 2009 WD Normal 103000.0
730 731 120 RL 39.0 5389 Pave NaN IR1 Lvl AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 1995 1996 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA No GLQ 1180.0 Unf 0.0 415.0 1595.0 GasA ... Y SBrkr 1616 0 0 1616 1.0 0.0 2 0 2 1 Gd 5 Typ 1 TA Attchd 1995.0 RFn 2.0 608.0 TA TA Y 237 152 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal 236500.0
731 732 80 RL 73.0 9590 Pave NaN IR1 Lvl AllPub Corner Gtl Timber Norm Norm 1Fam SLvl 7 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 442.0 Gd TA PConc Ex TA Av GLQ 786.0 Unf 0.0 82.0 868.0 GasA ... Y SBrkr 1146 0 0 1146 1.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2003.0 Fin 2.0 438.0 TA TA Y 160 22 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 187500.0
732 733 60 RL 75.0 11404 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1998 1999 Gable CompShg VinylSd VinylSd BrkFace 202.0 Gd TA PConc Gd TA Av ALQ 252.0 Unf 0.0 901.0 1153.0 GasA ... Y SBrkr 1153 878 0 2031 0.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1998.0 Fin 2.0 541.0 TA TA Y 192 84 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 222500.0
733 734 20 RL 80.0 10000 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Feedr Norm 1Fam 1Story 5 6 1961 1983 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No BLQ 594.0 Unf 0.0 270.0 864.0 GasA ... Y SBrkr 1144 0 0 1144 1.0 0.0 1 0 3 1 TA 6 Typ 1 TA Attchd 1961.0 RFn 1.0 264.0 TA TA Y 165 0 0 0 0 0 NaN GdWo Shed 400 3 2009 WD Normal 131400.0
734 735 20 RL NaN 8978 Pave NaN IR1 Lvl AllPub Corner Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1968 1968 Gable CompShg Plywood Plywood None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 948.0 948.0 GasA ... Y SBrkr 948 0 0 948 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1968.0 Unf 1.0 300.0 TA TA Y 147 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Family 108000.0
735 736 75 RM 60.0 10800 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2.5Unf 7 7 1914 1970 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Gd TA Mn Rec 390.0 Unf 0.0 490.0 880.0 GasW ... N SBrkr 880 888 0 1768 0.0 0.0 1 1 2 1 TA 6 Typ 2 TA Detchd 1914.0 Unf 2.0 320.0 TA TA N 0 341 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal 163000.0
736 737 90 RL 60.0 8544 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm Duplex 1Story 3 4 1950 1950 Gable CompShg Stucco Stone None 0.0 TA TA CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N FuseF 1040 0 0 1040 0.0 0.0 2 0 2 2 TA 6 Typ 0 NaN Detchd 1949.0 Unf 2.0 400.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 93500.0
737 738 60 RL 72.0 10463 Pave NaN IR1 HLS AllPub CulDSac Gtl Gilbert Norm Norm 1Fam 2Story 8 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 893.0 893.0 GasA ... Y SBrkr 901 900 0 1801 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2005.0 Fin 3.0 800.0 TA TA Y 0 116 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 239900.0
738 739 90 RL 60.0 10800 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm Duplex 1Story 5 5 1987 1988 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd Gd Gd GLQ 1200.0 Unf 0.0 0.0 1200.0 GasA ... Y SBrkr 1200 0 0 1200 3.0 0.0 3 0 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 120 0 0 0 0 0 NaN NaN NaN 0 3 2009 WD Alloca 179000.0
739 740 60 RL 65.0 9313 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 864.0 864.0 GasA ... Y SBrkr 864 864 0 1728 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2004.0 RFn 2.0 572.0 TA TA Y 187 56 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal 190000.0
740 741 70 RM 60.0 9600 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 5 7 1910 2002 Gable CompShg Wd Sdng Wd Shng None 0.0 TA Gd BrkTil Fa Fa No Unf 0.0 Unf 0.0 264.0 264.0 GasA ... Y SBrkr 768 664 0 1432 0.0 0.0 2 0 2 1 TA 7 Typ 0 NaN Detchd 1910.0 Unf 2.0 360.0 TA Gd Y 270 0 112 0 0 0 NaN GdPrv NaN 0 5 2007 WD Abnorml 132000.0
741 742 20 RL 65.0 6768 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Feedr Norm 1Fam 1Story 6 8 1961 1996 Hip CompShg HdBoard HdBoard None 0.0 TA Gd CBlock TA TA Mn GLQ 832.0 Unf 0.0 80.0 912.0 GasA ... Y SBrkr 912 0 0 912 1.0 1.0 1 0 3 1 Gd 5 Typ 0 NaN Detchd 1962.0 Unf 1.0 288.0 TA TA Y 168 0 0 0 0 0 NaN GdPrv NaN 0 5 2008 WD Normal 142000.0
742 743 20 RL 65.0 8450 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 7 5 2000 2001 Gable CompShg VinylSd VinylSd BrkFace 108.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1349.0 1349.0 GasA ... Y SBrkr 1349 0 0 1349 0.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Attchd 2000.0 Unf 2.0 539.0 TA TA Y 120 55 0 0 0 0 NaN GdPrv NaN 0 12 2007 WD Normal 179000.0
743 744 80 RL 70.0 12886 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam SLvl 5 6 1963 1999 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA Av ALQ 444.0 Unf 0.0 76.0 520.0 GasA ... Y SBrkr 1464 0 0 1464 0.0 1.0 2 0 3 1 TA 6 Min2 1 TA Attchd 1997.0 RFn 2.0 480.0 TA TA Y 302 0 0 0 100 0 NaN NaN NaN 0 10 2009 WD Normal 175000.0
744 745 120 RL 41.0 5395 Pave NaN IR1 HLS AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 1993 1993 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA No GLQ 733.0 Unf 0.0 604.0 1337.0 GasA ... Y SBrkr 1337 0 0 1337 1.0 0.0 2 0 2 1 Gd 5 Typ 1 TA Attchd 1993.0 RFn 2.0 462.0 TA TA Y 96 0 70 168 0 0 NaN NaN NaN 0 10 2008 WD Normal 180000.0
745 746 60 RL NaN 8963 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 8 9 1976 1996 Hip CompShg VinylSd VinylSd BrkFace 289.0 Ex Gd CBlock TA Gd No GLQ 575.0 ALQ 80.0 487.0 1142.0 GasA ... Y SBrkr 1175 1540 0 2715 0.0 1.0 3 1 4 1 Gd 11 Typ 2 TA BuiltIn 1994.0 Fin 2.0 831.0 TA TA Y 0 204 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 299800.0
746 747 60 RL NaN 8795 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2000 2000 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 300.0 Unf 0.0 652.0 952.0 GasA ... Y SBrkr 980 1276 0 2256 0.0 0.0 2 1 4 1 Gd 8 Typ 1 TA BuiltIn 2000.0 Fin 2.0 554.0 TA TA Y 224 54 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal 236000.0
747 748 70 RM 65.0 11700 Pave Pave IR1 Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 2Story 7 7 1880 2003 Mansard CompShg Stucco Stucco None 0.0 Gd TA Stone TA Fa No Unf 0.0 Unf 0.0 1240.0 1240.0 GasW ... N SBrkr 1320 1320 0 2640 0.0 0.0 1 1 4 1 Gd 8 Typ 1 Gd Detchd 1950.0 Unf 4.0 864.0 TA TA N 181 0 386 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 265979.0
748 749 20 RL 59.0 10593 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 1Story 7 5 1996 1996 Hip CompShg VinylSd VinylSd BrkFace 338.0 Gd TA PConc Gd TA No GLQ 919.0 Unf 0.0 801.0 1720.0 GasA ... Y SBrkr 1720 0 0 1720 1.0 0.0 2 0 3 1 Gd 7 Typ 1 TA Attchd 1996.0 Fin 2.0 527.0 TA TA Y 240 56 154 0 0 0 NaN NaN NaN 0 3 2010 WD Normal 260400.0
749 750 50 RL 50.0 8405 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 4 3 1945 1950 Gable CompShg WdShing Wd Shng None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 Wall ... N FuseF 1088 441 0 1529 0.0 0.0 2 0 4 1 TA 9 Mod 0 NaN Detchd 1945.0 Unf 1.0 240.0 TA TA N 92 0 185 0 0 0 NaN NaN NaN 0 4 2009 WD Normal 98000.0
750 751 50 RM 55.0 8800 Pave Grvl Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1.5Fin 4 7 1910 2004 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA Fa No Unf 0.0 Unf 0.0 576.0 576.0 GasA ... Y SBrkr 792 348 0 1140 0.0 0.0 1 0 3 1 TA 7 Min2 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 160 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 96500.0
751 752 60 RL NaN 7750 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert RRAn Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 660.0 660.0 GasA ... Y SBrkr 660 660 0 1320 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2003.0 Fin 2.0 400.0 TA TA Y 0 48 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 162000.0
752 753 20 RL 79.0 9236 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 6 5 1997 1997 Gable CompShg VinylSd VinylSd None 0.0 TA Gd PConc Gd TA Gd GLQ 1200.0 Unf 0.0 279.0 1479.0 GasA ... Y SBrkr 1494 0 0 1494 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1997.0 RFn 2.0 576.0 TA TA Y 168 27 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 217000.0
753 754 60 RL 80.0 10240 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2005 2005 Gable CompShg VinylSd VinylSd BrkFace 178.0 Gd TA PConc Gd TA Mn Unf 0.0 Unf 0.0 1030.0 1030.0 GasA ... Y SBrkr 1038 1060 0 2098 0.0 0.0 2 1 3 1 Ex 8 Typ 1 Gd Attchd 2005.0 RFn 3.0 878.0 TA TA Y 192 52 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal 275500.0
754 755 20 RL 61.0 7930 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 8 1969 2005 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No GLQ 439.0 LwQ 472.0 115.0 1026.0 GasA ... Y SBrkr 1026 0 0 1026 1.0 0.0 1 0 3 1 Gd 5 Typ 0 NaN Detchd 1969.0 RFn 2.0 440.0 TA TA Y 171 48 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 156000.0
755 756 160 FV 34.0 3230 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 2Story 6 5 1999 1999 Gable CompShg MetalSd MetalSd BrkFace 894.0 TA TA PConc Gd TA No GLQ 381.0 Unf 0.0 348.0 729.0 GasA ... Y SBrkr 742 729 0 1471 0.0 0.0 2 1 3 1 TA 6 Typ 0 NaN Detchd 1999.0 Unf 2.0 440.0 TA TA Y 0 24 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal 172500.0
756 757 60 RL 68.0 10769 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 20.0 Unf 0.0 846.0 866.0 GasA ... Y SBrkr 866 902 0 1768 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2007.0 RFn 2.0 578.0 TA TA Y 144 105 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal 212000.0
757 758 60 RL NaN 11616 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer Norm Norm 1Fam 2Story 6 5 1978 1978 Hip CompShg HdBoard HdBoard BrkCmn 328.0 TA TA CBlock TA TA Mn Rec 438.0 Unf 0.0 234.0 672.0 GasA ... Y SBrkr 672 714 0 1386 0.0 0.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1978.0 Fin 2.0 440.0 TA TA Y 335 0 0 0 0 0 NaN GdPrv NaN 0 4 2010 WD Abnorml 158900.0
758 759 160 FV 24.0 2280 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 7 5 1999 1999 Gable CompShg MetalSd MetalSd BrkFace 360.0 TA TA PConc Gd TA No ALQ 549.0 Unf 0.0 195.0 744.0 GasA ... Y SBrkr 757 744 0 1501 0.0 0.0 2 1 3 1 TA 6 Typ 0 NaN Detchd 1999.0 Unf 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 179400.0
759 760 60 RL 65.0 12257 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1995 1995 Gable CompShg VinylSd VinylSd BrkFace 513.0 Gd TA PConc Gd TA Av LwQ 56.0 ALQ 64.0 1198.0 1318.0 GasA ... Y SBrkr 1328 1203 0 2531 0.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1995.0 RFn 3.0 752.0 TA TA Y 222 98 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal 290000.0
760 761 20 RL 70.0 9100 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1959 1959 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 612.0 Unf 0.0 252.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 2008.0 Unf 1.0 300.0 Ex Ex Y 0 0 0 0 0 0 NaN NaN Shed 450 10 2009 WD Normal 127500.0
761 762 30 RM 60.0 6911 Pave NaN Reg Lvl AllPub FR2 Gtl BrkSide Feedr Norm 1Fam 1Story 5 5 1924 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA Mn LwQ 405.0 Unf 0.0 740.0 1145.0 GasA ... Y SBrkr 1301 0 0 1301 0.0 0.0 1 0 2 1 Fa 5 Min1 0 NaN Detchd 1965.0 Unf 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal 100000.0
762 763 60 FV 72.0 8640 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 2009 2009 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Mn GLQ 24.0 Unf 0.0 732.0 756.0 GasA ... Y SBrkr 764 783 0 1547 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2009.0 Unf 2.0 614.0 TA TA Y 169 45 0 0 0 0 NaN NaN NaN 0 6 2010 Con Normal 215200.0
763 764 60 RL 82.0 9430 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1999 1999 Gable CompShg VinylSd VinylSd BrkFace 673.0 Gd TA PConc Gd TA Mn GLQ 1163.0 Unf 0.0 89.0 1252.0 GasA ... Y SBrkr 1268 1097 0 2365 1.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 1999.0 RFn 3.0 856.0 TA TA Y 0 128 0 0 180 0 NaN NaN NaN 0 7 2009 WD Normal 337000.0
764 765 120 RL 30.0 9549 Pave NaN IR1 Lvl AllPub CulDSac Gtl Veenker Norm Norm TwnhsE 1Story 8 5 1995 1996 Hip CompShg BrkFace BrkFace None 0.0 Gd Gd PConc Gd Gd Av LwQ 437.0 GLQ 1057.0 0.0 1494.0 GasA ... Y SBrkr 1494 0 0 1494 1.0 0.0 1 1 2 1 Ex 6 Typ 1 Gd Attchd 1995.0 Fin 2.0 481.0 TA TA Y 0 30 0 0 216 0 NaN NaN NaN 0 4 2006 WD Normal 270000.0
765 766 20 RL 75.0 14587 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 9 5 2008 2008 Gable CompShg VinylSd VinylSd Stone 284.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1498.0 1498.0 GasA ... Y SBrkr 1506 0 0 1506 0.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2008.0 Fin 2.0 592.0 TA TA Y 0 174 0 0 0 0 NaN NaN NaN 0 8 2008 New Partial 264132.0
766 767 60 RL 80.0 10421 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 7 5 1988 1988 Gable CompShg HdBoard HdBoard BrkFace 42.0 TA TA CBlock Gd TA No GLQ 394.0 Unf 0.0 586.0 980.0 GasA ... Y SBrkr 980 734 0 1714 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1988.0 Unf 2.0 496.0 TA TA Y 228 66 156 0 0 0 NaN MnPrv Shed 500 3 2010 WD Normal 196500.0
767 768 50 RL 75.0 12508 Pave NaN IR1 Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1.5Fin 6 7 1940 1985 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock Gd TA Mn ALQ 660.0 Unf 0.0 323.0 983.0 GasA ... Y SBrkr 983 767 0 1750 1.0 0.0 2 0 4 1 TA 7 Mod 0 NaN Attchd 1989.0 Unf 1.0 423.0 TA TA Y 245 0 156 0 0 0 NaN NaN Shed 1300 7 2008 WD Normal 160000.0
768 769 20 RL 70.0 9100 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2004 2005 Hip CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 24.0 Unf 0.0 1836.0 1860.0 GasA ... Y SBrkr 1836 0 0 1836 0.0 0.0 2 0 3 1 Gd 8 Typ 1 Gd Attchd 2004.0 Fin 2.0 484.0 TA TA Y 120 33 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal 216837.0
769 770 60 RL 47.0 53504 Pave NaN IR2 HLS AllPub CulDSac Mod StoneBr Norm Norm 1Fam 2Story 8 5 2003 2003 Hip CompShg CemntBd Wd Shng BrkFace 603.0 Ex TA PConc Gd TA Gd ALQ 1416.0 Unf 0.0 234.0 1650.0 GasA ... Y SBrkr 1690 1589 0 3279 1.0 0.0 3 1 4 1 Ex 12 Mod 1 Gd BuiltIn 2003.0 Fin 3.0 841.0 TA TA Y 503 36 0 0 210 0 NaN NaN NaN 0 6 2010 WD Normal 538000.0
770 771 85 RL NaN 7252 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer Norm Norm 1Fam SFoyer 5 5 1982 1982 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock Gd TA Av GLQ 685.0 Unf 0.0 173.0 858.0 GasA ... Y SBrkr 858 0 0 858 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1983.0 Unf 2.0 576.0 TA TA Y 120 0 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal 134900.0
771 772 20 RL 67.0 8877 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 5 1951 1951 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock Fa Fa No LwQ 836.0 Unf 0.0 0.0 836.0 GasA ... Y FuseF 1220 0 0 1220 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1951.0 Unf 2.0 396.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2006 COD Normal 102000.0
772 773 80 RL 94.0 7819 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam SLvl 6 5 1976 1976 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA Av ALQ 422.0 BLQ 127.0 480.0 1029.0 GasA ... Y SBrkr 1117 0 0 1117 1.0 0.0 1 0 3 1 TA 6 Typ 1 TA Detchd 1976.0 Unf 2.0 672.0 TA TA Y 144 0 0 0 0 0 NaN MnPrv NaN 0 3 2010 WD Abnorml 107000.0
773 774 20 RL 70.0 10150 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam 1Story 5 5 1958 1958 Gable CompShg Wd Sdng Wd Sdng None 1.0 TA TA CBlock TA TA No Rec 456.0 Unf 0.0 456.0 912.0 GasA ... Y FuseA 912 0 0 912 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1958.0 RFn 1.0 275.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2007 COD Normal 114500.0
774 775 20 RL 110.0 14226 Pave NaN Reg Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2006 2006 Hip CompShg VinylSd VinylSd BrkFace 375.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1935.0 1935.0 GasA ... Y SBrkr 1973 0 0 1973 0.0 0.0 2 0 3 1 Gd 9 Typ 1 Gd Attchd 2006.0 Fin 3.0 895.0 TA TA Y 315 45 0 0 0 0 NaN NaN NaN 0 7 2007 New Partial 395000.0
775 776 120 RM 32.0 4500 Pave NaN Reg Lvl AllPub FR2 Gtl Mitchel Norm Norm TwnhsE 1Story 6 5 1998 1998 Hip CompShg VinylSd VinylSd BrkFace 320.0 TA TA PConc Ex TA No GLQ 866.0 Unf 0.0 338.0 1204.0 GasA ... Y SBrkr 1204 0 0 1204 1.0 0.0 2 0 2 1 TA 5 Typ 0 NaN Attchd 1998.0 Fin 2.0 412.0 TA TA Y 0 247 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 162000.0
776 777 20 RL 86.0 11210 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 240.0 Gd TA PConc Gd TA Av GLQ 20.0 Unf 0.0 1594.0 1614.0 GasA ... Y SBrkr 1614 0 0 1614 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2005.0 RFn 3.0 865.0 TA TA Y 144 59 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial 221500.0
777 778 20 RL 100.0 13350 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1974 1974 Hip CompShg HdBoard Plywood None 0.0 TA TA CBlock TA TA No ALQ 762.0 Unf 0.0 102.0 864.0 GasA ... Y SBrkr 894 0 0 894 1.0 0.0 1 0 3 1 TA 5 Typ 1 Fa Attchd 1974.0 Unf 2.0 440.0 TA TA Y 241 0 0 0 0 0 NaN MnPrv NaN 0 6 2006 WD Normal 142500.0
778 779 90 RH 60.0 8400 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Feedr Norm Duplex 1Story 5 5 1977 1977 Gable CompShg Plywood Plywood BrkFace 320.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 2020 0 0 2020 0.0 0.0 2 0 4 2 TA 10 Typ 2 TA Detchd 1977.0 Unf 2.0 630.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2007 WD Normal 144000.0
779 780 90 RL 78.0 10530 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm Duplex SFoyer 6 5 1977 1977 Gable CompShg Plywood ImStucc BrkFace 90.0 TA TA CBlock Gd TA Gd GLQ 975.0 Unf 0.0 0.0 975.0 GasA ... Y SBrkr 1004 0 0 1004 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1977.0 Unf 2.0 504.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 135000.0
780 781 20 RL 63.0 7875 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 1Story 7 5 1995 1996 Gable CompShg HdBoard HdBoard BrkFace 38.0 TA TA PConc Gd Gd No Unf 0.0 Unf 0.0 1237.0 1237.0 GasA ... Y SBrkr 1253 0 0 1253 0.0 0.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1995.0 Fin 2.0 402.0 TA TA Y 220 21 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 176000.0
781 782 60 RL 65.0 7153 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 6 5 1992 1992 Gable CompShg VinylSd VinylSd None 0.0 Gd Gd PConc Gd TA No ALQ 387.0 Unf 0.0 374.0 761.0 GasA ... Y SBrkr 810 793 0 1603 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1992.0 RFn 2.0 484.0 TA TA Y 0 124 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 175900.0
782 783 20 RL 67.0 16285 Pave NaN IR2 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2001 2002 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1413.0 1413.0 GasA ... Y SBrkr 1430 0 0 1430 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2001.0 RFn 2.0 605.0 TA TA Y 0 33 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 187100.0
783 784 85 RL NaN 9101 Pave NaN IR1 Lvl AllPub Corner Gtl Mitchel Norm Norm 1Fam SFoyer 5 6 1978 1978 Gable CompShg Plywood Plywood BrkFace 104.0 TA Gd PConc Gd TA Av GLQ 1097.0 Unf 0.0 0.0 1097.0 GasA ... Y SBrkr 1110 0 0 1110 1.0 0.0 1 0 1 1 Gd 4 Typ 1 TA Attchd 1978.0 Fin 2.0 602.0 TA TA Y 303 30 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 165500.0
784 785 75 RM 35.0 6300 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2.5Unf 6 6 1914 2001 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 742.0 742.0 GasA ... Y SBrkr 742 742 0 1484 0.0 0.0 2 0 3 1 TA 9 Typ 1 Gd NaN NaN NaN 0.0 0.0 NaN NaN Y 0 291 134 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 128000.0
785 786 20 RL NaN 9790 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Feedr Norm 1Fam 1Story 6 5 1967 1967 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 251.0 LwQ 630.0 491.0 1372.0 GasA ... Y SBrkr 1342 0 0 1342 0.0 0.0 2 0 3 1 TA 7 Typ 1 Gd Attchd 1967.0 Unf 2.0 457.0 TA TA Y 0 0 0 0 197 0 NaN NaN NaN 0 9 2009 WD Normal 161500.0
786 787 50 RM 60.0 10800 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1.5Fin 5 6 1915 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Gd PConc Fa TA No LwQ 686.0 Unf 0.0 0.0 686.0 GasA ... Y SBrkr 966 686 0 1652 1.0 0.0 2 0 4 1 TA 7 Typ 0 NaN Detchd 1961.0 Unf 1.0 416.0 TA TA Y 0 0 196 0 0 0 NaN NaN Shed 1200 6 2010 WD Normal 139000.0
787 788 60 RL 76.0 10142 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 656.0 Unf 0.0 300.0 956.0 GasA ... Y SBrkr 956 1128 0 2084 1.0 0.0 2 1 4 1 Gd 8 Typ 0 NaN BuiltIn 2004.0 RFn 2.0 618.0 TA TA Y 0 45 0 0 0 0 NaN NaN NaN 0 1 2010 WD Normal 233000.0
788 789 20 RM 50.0 6000 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1Story 4 7 1954 2000 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 901.0 901.0 GasA ... Y SBrkr 901 0 0 901 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1954.0 Unf 1.0 281.0 Fa TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 107900.0
789 790 60 RL NaN 12205 Pave NaN IR1 Low AllPub Inside Gtl ClearCr Norm Norm 1Fam 2Story 6 8 1966 2007 Gable CompShg HdBoard HdBoard BrkFace 157.0 TA TA CBlock TA Fa Gd LwQ 568.0 Unf 0.0 264.0 832.0 GasA ... Y SBrkr 976 1111 0 2087 0.0 0.0 2 1 5 1 Gd 9 Typ 0 NaN Attchd 1966.0 Fin 2.0 444.0 TA TA Y 133 168 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 187500.0
790 791 120 RL 43.0 3182 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 11.0 Gd TA PConc Gd TA No GLQ 16.0 Unf 0.0 1129.0 1145.0 GasA ... Y SBrkr 1145 0 0 1145 0.0 0.0 2 0 2 1 Gd 5 Typ 1 Gd Attchd 2005.0 Fin 2.0 397.0 TA TA Y 100 16 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal 160200.0
791 792 80 RL NaN 11333 Pave NaN IR1 Lvl AllPub Corner Gtl Mitchel Norm Norm 1Fam SLvl 6 5 1976 1976 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA Av ALQ 539.0 Unf 0.0 490.0 1029.0 GasA ... Y SBrkr 1062 0 0 1062 1.0 0.0 1 0 3 1 TA 5 Typ 2 TA Attchd 1976.0 RFn 2.0 539.0 TA TA Y 120 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 146800.0
792 793 60 RL 92.0 9920 Pave NaN IR1 Lvl AllPub CulDSac Gtl NoRidge Norm Norm 1Fam 2Story 7 5 1996 1997 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA Av GLQ 862.0 Unf 0.0 255.0 1117.0 GasA ... Y SBrkr 1127 886 0 2013 1.0 0.0 2 1 3 1 TA 8 Typ 1 TA Attchd 1997.0 Unf 2.0 455.0 TA TA Y 180 130 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 269790.0
793 794 20 RL 76.0 9158 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg CemntBd CmentBd Stone 140.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1496.0 1496.0 GasA ... Y SBrkr 1496 0 0 1496 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2007.0 Fin 2.0 474.0 TA TA Y 168 130 0 0 0 0 NaN NaN NaN 0 6 2007 New Partial 225000.0
794 795 60 RL NaN 10832 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 7 5 1994 1996 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 712.0 712.0 GasA ... Y SBrkr 1086 809 0 1895 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1994.0 Fin 2.0 409.0 TA TA Y 143 46 0 0 0 0 NaN NaN Shed 500 10 2008 WD Normal 194500.0
795 796 60 RL 70.0 8400 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 6 6 1980 1981 Gable CompShg HdBoard HdBoard BrkFace 130.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 650.0 650.0 GasA ... Y SBrkr 888 676 0 1564 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1980.0 Unf 2.0 476.0 TA TA Y 0 50 0 0 204 0 NaN MnPrv NaN 0 4 2010 WD Normal 171000.0
796 797 20 RL 71.0 8197 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 6 5 1977 1977 Gable CompShg Plywood Plywood BrkFace 148.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 660.0 660.0 GasA ... Y SBrkr 1285 0 0 1285 0.0 0.0 1 1 3 1 TA 7 Typ 1 TA Attchd 1977.0 RFn 2.0 528.0 TA TA Y 138 0 0 0 0 0 NaN MnPrv NaN 0 4 2007 WD Normal 143500.0
797 798 20 RL 57.0 7677 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1953 1953 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No BLQ 570.0 Unf 0.0 203.0 773.0 GasA ... Y SBrkr 773 0 0 773 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1953.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Abnorml 110000.0
798 799 60 RL 104.0 13518 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2008 2009 Hip CompShg VinylSd VinylSd Stone 860.0 Ex TA PConc Ex TA No Unf 0.0 Unf 0.0 1926.0 1926.0 GasA ... Y SBrkr 1966 1174 0 3140 0.0 0.0 3 1 4 1 Ex 11 Typ 2 Gd BuiltIn 2009.0 Fin 3.0 820.0 TA TA Y 144 78 0 0 0 0 NaN NaN NaN 0 7 2009 New Partial 485000.0
799 800 50 RL 60.0 7200 Pave NaN Reg Lvl AllPub Corner Gtl SWISU Feedr Norm 1Fam 1.5Fin 5 7 1937 1950 Gable CompShg Wd Sdng Wd Sdng BrkFace 252.0 TA TA BrkTil Gd TA No ALQ 569.0 Unf 0.0 162.0 731.0 GasA ... Y SBrkr 981 787 0 1768 1.0 0.0 1 1 3 1 Gd 7 Typ 2 TA Detchd 1939.0 Unf 1.0 240.0 TA TA Y 0 0 264 0 0 0 NaN MnPrv NaN 0 6 2007 WD Normal 175000.0
800 801 60 RL 79.0 12798 Pave NaN IR1 HLS AllPub Inside Mod ClearCr Feedr Norm 1Fam 2Story 6 5 1997 1997 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Gd GLQ 462.0 Unf 0.0 154.0 616.0 GasA ... Y SBrkr 616 1072 0 1688 1.0 0.0 2 1 4 1 Gd 8 Typ 0 NaN Attchd 1997.0 RFn 2.0 603.0 TA TA Y 403 114 185 0 0 0 NaN NaN Shed 400 5 2008 WD Normal 200000.0
801 802 30 RM 40.0 4800 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 4 7 1916 1990 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No LwQ 197.0 Unf 0.0 999.0 1196.0 GasA ... Y FuseA 1196 0 0 1196 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1957.0 Unf 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 109900.0
802 803 60 RL 63.0 8199 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2005 2005 Gable CompShg WdShing Wd Shng None 0.0 Gd TA PConc Gd TA Av GLQ 648.0 Unf 0.0 80.0 728.0 GasA ... Y SBrkr 728 728 0 1456 1.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2005.0 Fin 2.0 410.0 TA TA Y 36 18 0 0 0 0 NaN NaN NaN 0 10 2008 WD Normal 189000.0
803 804 60 RL 107.0 13891 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2008 2009 Hip CompShg VinylSd VinylSd Stone 424.0 Ex TA PConc Ex TA Gd Unf 0.0 Unf 0.0 1734.0 1734.0 GasA ... Y SBrkr 1734 1088 0 2822 0.0 0.0 3 1 4 1 Ex 12 Typ 1 Gd BuiltIn 2009.0 RFn 3.0 1020.0 TA TA Y 52 170 0 0 192 0 NaN NaN NaN 0 1 2009 New Partial 582933.0
804 805 20 RL 75.0 9000 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1954 1954 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No LwQ 812.0 Unf 0.0 124.0 936.0 GasA ... Y SBrkr 1128 0 0 1128 0.0 0.0 1 0 2 1 TA 5 Min1 0 NaN Attchd 1954.0 Unf 1.0 286.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 6 2006 WD Family 118000.0
805 806 20 RL 91.0 12274 Pave NaN IR1 Lvl AllPub FR2 Gtl Somerst Norm Norm 1Fam 1Story 7 5 2008 2008 Gable CompShg VinylSd VinylSd Stone 256.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1417.0 1417.0 GasA ... Y SBrkr 1428 0 0 1428 0.0 0.0 2 0 3 1 Ex 6 Typ 0 NaN Attchd 2008.0 RFn 2.0 554.0 TA TA Y 0 60 0 0 0 0 NaN NaN NaN 0 7 2008 New Partial 227680.0
806 807 80 RL 75.0 9750 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 5 5 1967 1967 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc TA TA Av ALQ 400.0 Rec 480.0 100.0 980.0 GasA ... Y SBrkr 980 0 0 980 0.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Attchd 1967.0 Fin 1.0 384.0 TA TA Y 68 0 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal 135500.0
807 808 70 RL 144.0 21384 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 2Story 5 6 1923 2004 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Gd GLQ 1309.0 Unf 0.0 15.0 1324.0 GasA ... Y SBrkr 1072 504 0 1576 2.0 0.0 1 1 3 1 Gd 6 Typ 1 TA Attchd 1923.0 RFn 2.0 528.0 TA TA Y 0 312 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 223500.0
808 809 80 RL 85.0 13400 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 5 5 1966 1966 Gable CompShg VinylSd VinylSd BrkFace 1047.0 TA TA CBlock TA TA Av ALQ 516.0 BLQ 128.0 380.0 1024.0 GasA ... Y SBrkr 1086 0 0 1086 1.0 0.0 1 0 3 1 TA 6 Typ 1 Gd Attchd 1966.0 RFn 2.0 484.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 6 2006 WD Normal 159950.0
809 810 75 RM 90.0 8100 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 2.5Unf 5 5 1898 1965 Hip CompShg AsbShng AsbShng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 849.0 849.0 GasA ... N FuseA 1075 1063 0 2138 0.0 0.0 2 0 2 3 TA 11 Typ 0 NaN Detchd 1910.0 Unf 2.0 360.0 Fa Po N 40 156 0 0 0 0 NaN MnPrv NaN 0 11 2009 WD Normal 106000.0
810 811 20 RL 78.0 10140 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 6 1974 1999 Hip CompShg HdBoard HdBoard BrkFace 99.0 TA TA CBlock TA TA No ALQ 663.0 LwQ 377.0 0.0 1040.0 GasA ... Y SBrkr 1309 0 0 1309 1.0 0.0 1 1 3 1 Gd 5 Typ 1 Fa Attchd 1974.0 RFn 2.0 484.0 TA TA Y 265 0 0 0 0 648 Fa GdPrv NaN 0 1 2006 WD Normal 181000.0
811 812 120 RM NaN 4438 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm TwnhsE 1Story 6 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 169.0 Gd TA PConc Gd TA Gd GLQ 662.0 Unf 0.0 186.0 848.0 GasA ... Y SBrkr 848 0 0 848 1.0 0.0 1 0 1 1 Gd 4 Typ 1 Gd Attchd 2004.0 Fin 2.0 420.0 TA TA Y 140 0 0 0 0 0 NaN NaN NaN 0 6 2008 ConLD Normal 144500.0
812 813 20 C (all) 66.0 8712 Grvl NaN Reg Bnk AllPub Inside Mod IDOTRR Norm Norm 1Fam 1Story 5 5 1952 1952 Hip CompShg Wd Sdng Wd Sdng None 0.0 Fa TA CBlock TA TA Av Unf 0.0 Unf 0.0 540.0 540.0 GasA ... N FuseA 1044 0 0 1044 0.0 0.0 1 0 2 1 Fa 4 Typ 0 NaN Basment 1952.0 Unf 2.0 504.0 TA TA N 0 0 0 0 0 0 NaN NaN Shed 54 6 2010 WD Alloca 55993.0
813 814 20 RL 75.0 9750 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1958 1958 Gable CompShg MetalSd MetalSd BrkFace 243.0 TA TA CBlock TA TA No Rec 608.0 Unf 0.0 834.0 1442.0 GasA ... Y SBrkr 1442 0 0 1442 0.0 0.0 1 1 4 1 TA 7 Typ 0 NaN Attchd 1958.0 RFn 1.0 301.0 TA TA Y 0 0 275 0 0 0 NaN NaN Shed 500 4 2007 COD Normal 157900.0
814 815 50 RL 45.0 8248 Pave Grvl Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 5 7 1918 1950 Gable CompShg Stucco Stucco None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 686.0 686.0 GasW ... Y SBrkr 686 564 0 1250 0.0 1.0 1 1 3 1 Fa 7 Typ 0 NaN Detchd 1955.0 Unf 1.0 280.0 TA TA P 207 0 96 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 116000.0
815 816 20 RL 48.0 12137 Pave NaN IR2 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 1Story 7 5 1998 1998 Gable CompShg VinylSd VinylSd BrkFace 442.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1649.0 1649.0 GasA ... Y SBrkr 1661 0 0 1661 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1998.0 RFn 2.0 598.0 TA TA Y 0 34 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 224900.0
816 817 20 RL NaN 11425 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 6 1954 1954 Gable CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No BLQ 486.0 Unf 0.0 522.0 1008.0 GasA ... Y SBrkr 1008 0 0 1008 0.0 0.0 1 0 2 1 TA 4 Typ 1 Gd Attchd 1954.0 RFn 1.0 275.0 TA TA Y 0 0 120 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 137000.0
817 818 20 RL NaN 13265 Pave NaN IR1 Lvl AllPub CulDSac Gtl Mitchel Norm Norm 1Fam 1Story 8 5 2002 2002 Hip CompShg CemntBd CmentBd BrkFace 148.0 Gd TA PConc Gd TA No GLQ 1218.0 Unf 0.0 350.0 1568.0 GasA ... Y SBrkr 1689 0 0 1689 1.0 0.0 2 0 3 1 Gd 7 Typ 2 Gd Attchd 2002.0 RFn 3.0 857.0 TA TA Y 150 59 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 271000.0
818 819 80 RL 80.0 8816 Pave NaN Reg Lvl AllPub Inside Gtl ClearCr Norm Norm 1Fam SLvl 6 7 1971 1971 Gable CompShg HdBoard HdBoard BrkFace 80.0 TA TA CBlock TA TA Av GLQ 504.0 Unf 0.0 506.0 1010.0 GasA ... Y SBrkr 1052 0 0 1052 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1971.0 Unf 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 6 2010 WD Normal 155000.0
819 820 120 RL 44.0 6371 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 7 5 2009 2010 Gable CompShg VinylSd VinylSd Stone 128.0 Gd TA PConc Gd TA Mn GLQ 733.0 Unf 0.0 625.0 1358.0 GasA ... Y SBrkr 1358 0 0 1358 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2010.0 RFn 2.0 484.0 TA TA Y 192 35 0 0 0 0 NaN NaN NaN 0 6 2010 New Partial 224000.0
820 821 60 RL 72.0 7226 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 798.0 798.0 GasA ... Y SBrkr 798 842 0 1640 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2003.0 RFn 2.0 595.0 TA TA Y 0 45 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 183000.0
821 822 20 RM 60.0 6000 Pave Pave Reg Bnk AllPub Inside Mod OldTown Norm Norm 2fmCon 1Story 4 4 1953 1953 Gable CompShg MetalSd MetalSd None 0.0 Fa TA CBlock Fa TA No Unf 0.0 Unf 0.0 936.0 936.0 GasA ... N SBrkr 936 0 0 936 0.0 0.0 1 0 2 1 TA 4 Min2 0 NaN Detchd 1974.0 Unf 2.0 576.0 TA TA Y 0 32 112 0 0 0 NaN NaN NaN 0 2 2009 WD Normal 93000.0
822 823 60 RL NaN 12394 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Gd Unf 0.0 Unf 0.0 847.0 847.0 GasA ... Y SBrkr 847 886 0 1733 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd BuiltIn 2003.0 Fin 2.0 433.0 TA TA Y 100 48 0 0 0 0 NaN NaN NaN 0 10 2007 WD Family 225000.0
823 824 50 RL 60.0 9900 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Norm Norm 1Fam 1.5Fin 6 7 1940 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 778.0 778.0 GasA ... Y SBrkr 944 545 0 1489 0.0 0.0 2 0 3 1 TA 7 Typ 1 Gd Detchd 1940.0 Unf 1.0 240.0 TA TA Y 335 0 0 0 0 0 NaN GdWo NaN 0 7 2009 WD Normal 139500.0
824 825 20 FV 81.0 11216 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd Gd No Unf 0.0 Unf 0.0 1489.0 1489.0 GasA ... Y SBrkr 1489 0 0 1489 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 RFn 2.0 776.0 TA TA Y 0 140 0 0 0 0 NaN NaN NaN 0 6 2006 New Partial 232600.0
825 826 20 RL 114.0 14803 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt PosN PosN 1Fam 1Story 10 5 2007 2008 Hip CompShg CemntBd CmentBd BrkFace 816.0 Ex TA PConc Ex TA Av GLQ 1636.0 Unf 0.0 442.0 2078.0 GasA ... Y SBrkr 2084 0 0 2084 1.0 0.0 2 0 2 1 Ex 7 Typ 1 Gd Attchd 2007.0 Fin 3.0 1220.0 TA TA Y 188 45 0 0 0 0 NaN NaN NaN 0 6 2008 New Partial 385000.0
826 827 45 RM 50.0 6130 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Unf 5 6 1924 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No ALQ 784.0 Unf 0.0 0.0 784.0 GasA ... Y SBrkr 784 0 0 784 1.0 0.0 1 0 2 1 Gd 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 116 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 109500.0
827 828 20 RL 65.0 8529 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 7 5 2001 2001 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 20.0 Unf 0.0 1434.0 1454.0 GasA ... Y SBrkr 1434 0 0 1434 0.0 0.0 2 0 3 1 Gd 6 Typ 1 TA Attchd 2001.0 RFn 2.0 527.0 TA TA Y 290 39 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal 189000.0
828 829 60 RL NaN 28698 Pave NaN IR2 Low AllPub CulDSac Sev ClearCr Norm Norm 1Fam 2Story 5 5 1967 1967 Flat Tar&Grv Plywood Plywood None 0.0 TA TA PConc TA Gd Gd LwQ 249.0 ALQ 764.0 0.0 1013.0 GasA ... Y SBrkr 1160 966 0 2126 0.0 1.0 2 1 3 1 TA 7 Min2 0 NaN Attchd 1967.0 Fin 2.0 538.0 TA TA Y 486 0 0 0 225 0 NaN NaN NaN 0 6 2009 WD Abnorml 185000.0
829 830 160 FV 24.0 2544 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 7 5 2005 2005 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 600.0 600.0 GasA ... Y SBrkr 520 623 80 1223 0.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Detchd 2005.0 RFn 2.0 480.0 TA TA Y 0 166 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 147400.0
830 831 20 RL 80.0 11900 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 5 1957 1957 Gable CompShg HdBoard HdBoard BrkFace 387.0 TA TA CBlock TA TA No Rec 1040.0 Unf 0.0 352.0 1392.0 GasA ... Y FuseA 1392 0 0 1392 1.0 0.0 1 1 3 1 TA 6 Typ 2 Gd Attchd 1957.0 RFn 2.0 458.0 TA TA Y 0 0 0 0 192 0 NaN NaN NaN 0 6 2008 WD Normal 166000.0
831 832 160 FV 30.0 3180 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 2Story 7 5 2005 2005 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 600.0 600.0 GasA ... Y SBrkr 520 600 80 1200 0.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Detchd 2005.0 RFn 2.0 480.0 TA TA Y 0 166 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 151000.0
832 833 60 RL 44.0 9548 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 2Story 7 6 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 223.0 Gd TA PConc Gd TA No GLQ 483.0 Unf 0.0 458.0 941.0 GasA ... Y SBrkr 941 888 0 1829 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 2003.0 RFn 2.0 613.0 TA TA Y 192 39 0 0 0 0 NaN NaN NaN 0 1 2010 WD Normal 237000.0
833 834 20 RL 100.0 10004 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1964 1964 Gable CompShg HdBoard Plywood BrkFace 180.0 TA TA CBlock TA TA No Rec 196.0 BLQ 345.0 975.0 1516.0 GasA ... Y SBrkr 1516 0 0 1516 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1964.0 RFn 2.0 472.0 TA TA Y 0 0 0 0 152 0 NaN NaN NaN 0 2 2009 WD Normal 167000.0
834 835 20 RL 75.0 7875 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1961 1961 Gable CompShg VinylSd VinylSd BrkFace 136.0 TA TA CBlock TA TA No Rec 572.0 Unf 0.0 572.0 1144.0 GasA ... Y SBrkr 1144 0 0 1144 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1961.0 Unf 2.0 456.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 9 2008 WD Normal 139950.0
835 836 20 RL 60.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 4 7 1950 1995 Gable CompShg VinylSd HdBoard None 0.0 TA TA CBlock Gd TA No BLQ 442.0 Unf 0.0 625.0 1067.0 GasA ... Y SBrkr 1067 0 0 1067 0.0 0.0 2 0 2 1 Gd 4 Min2 0 NaN Attchd 1996.0 Unf 2.0 436.0 TA TA Y 290 0 0 0 0 0 NaN NaN NaN 0 2 2010 WD Normal 128000.0
836 837 30 RM 90.0 8100 Pave Pave Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 6 1948 1973 Gable CompShg VinylSd VinylSd None 0.0 TA TA BrkTil TA TA No Rec 338.0 Unf 0.0 1221.0 1559.0 GasA ... Y SBrkr 1559 0 0 1559 1.0 0.0 1 0 2 1 TA 5 Min2 0 NaN Detchd 1948.0 Unf 2.0 812.0 TA TA Y 0 116 230 0 0 0 NaN GdWo NaN 0 6 2007 COD Normal 153500.0
837 838 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 5 1973 1973 Gable CompShg HdBoard HdBoard BrkFace 158.0 TA TA CBlock TA TA No BLQ 330.0 Unf 0.0 153.0 483.0 GasA ... Y SBrkr 483 504 0 987 1.0 0.0 1 1 2 1 TA 5 Typ 0 NaN Detchd 1973.0 Unf 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2008 WD Normal 100000.0
838 839 20 RL 75.0 9525 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 6 1995 2006 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1099.0 1099.0 GasA ... Y SBrkr 1099 0 0 1099 0.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN Attchd 1999.0 Unf 1.0 352.0 TA TA Y 278 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 144000.0
839 840 50 RL 70.0 11767 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 5 6 1946 1995 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No BLQ 352.0 Unf 0.0 416.0 768.0 GasA ... Y SBrkr 768 432 0 1200 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1946.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 130500.0
840 841 70 RH NaN 12155 Pave NaN IR1 Lvl AllPub Inside Gtl SWISU Norm Norm 1Fam 2Story 6 8 1925 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No BLQ 156.0 Unf 0.0 516.0 672.0 GasA ... N SBrkr 810 672 0 1482 0.0 0.0 2 0 4 1 Fa 7 Typ 0 NaN Detchd 1934.0 Unf 1.0 400.0 TA TA P 0 0 254 0 0 0 NaN NaN NaN 0 3 2008 WD Normal 140000.0
841 842 70 RM 60.0 10440 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 5 8 1904 2002 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 650.0 650.0 GasA ... Y SBrkr 958 581 0 1539 0.0 0.0 2 0 3 1 Gd 8 Typ 1 Po Detchd 1983.0 Unf 2.0 686.0 Gd TA P 70 78 68 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 157500.0
842 843 80 RL 82.0 9020 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 6 7 1966 1966 Gable CompShg HdBoard HdBoard BrkFace 183.0 TA TA CBlock TA TA Gd Rec 312.0 ALQ 539.0 276.0 1127.0 GasA ... Y SBrkr 1165 0 0 1165 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1966.0 RFn 2.0 490.0 Gd Gd Y 0 129 0 0 0 0 NaN GdPrv NaN 0 5 2008 WD Normal 174900.0
843 844 90 RL 80.0 8000 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Artery Norm Duplex 1Story 5 4 1961 1961 Gable CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1800.0 1800.0 GasA ... N SBrkr 1800 0 0 1800 0.0 0.0 2 0 6 2 TA 10 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 141000.0
844 845 50 RM 100.0 12665 Pave Grvl IR1 Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1.5Fin 5 8 1915 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA Mn Unf 0.0 Unf 0.0 876.0 876.0 GasA ... Y SBrkr 876 540 0 1416 0.0 0.0 1 1 4 1 TA 7 Typ 1 Gd Detchd 1949.0 Unf 3.0 720.0 TA TA Y 418 0 194 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 153900.0
845 846 85 RL NaN 16647 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer RRAe Norm 1Fam SFoyer 5 5 1975 1981 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA Gd ALQ 1390.0 Unf 0.0 0.0 1390.0 GasA ... Y SBrkr 1701 0 0 1701 1.0 0.0 2 0 3 1 TA 6 Min2 2 TA Basment 1975.0 Fin 2.0 611.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 1 2007 WD Normal 171000.0
846 847 60 RL 75.0 9317 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 7 5 1993 1993 Gable CompShg HdBoard HdBoard BrkFace 137.0 Gd TA PConc Gd TA No ALQ 513.0 Unf 0.0 227.0 740.0 GasA ... Y SBrkr 1006 769 0 1775 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1993.0 Unf 2.0 425.0 TA TA Y 234 72 192 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 213000.0
847 848 20 RL 36.0 15523 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 1Story 5 6 1972 1972 Gable CompShg HdBoard Plywood None 0.0 TA TA CBlock TA TA Av BLQ 460.0 Unf 0.0 404.0 864.0 GasA ... Y SBrkr 864 0 0 864 1.0 0.0 1 0 3 1 TA 5 Typ 1 Fa Attchd 1972.0 Unf 1.0 338.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal 133500.0
848 849 50 RL 75.0 45600 Pave NaN IR2 Bnk AllPub Inside Gtl ClearCr Norm Norm 1Fam 1.5Fin 6 8 1908 1997 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 907.0 907.0 GasA ... Y SBrkr 1307 1051 0 2358 0.0 0.0 3 0 5 1 TA 10 Typ 1 Gd Detchd 1908.0 Unf 2.0 360.0 Fa TA Y 486 40 0 0 175 0 NaN NaN NaN 0 9 2008 WD Normal 240000.0
849 850 80 RL 80.0 9600 Pave NaN Reg Lvl AllPub FR2 Gtl Veenker Feedr Norm 1Fam SLvl 6 7 1976 1994 Hip CompShg Plywood Plywood BrkFace 360.0 Gd Gd CBlock TA TA No Unf 0.0 Unf 0.0 528.0 528.0 GasA ... Y SBrkr 1094 761 0 1855 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1976.0 RFn 2.0 512.0 TA TA Y 113 100 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 187000.0
850 851 120 RM 36.0 4435 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm TwnhsE 1Story 6 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 170.0 Gd TA PConc Gd TA Av GLQ 659.0 Unf 0.0 189.0 848.0 GasA ... Y SBrkr 848 0 0 848 1.0 0.0 1 0 1 1 Gd 3 Typ 0 NaN Attchd 2003.0 Fin 2.0 420.0 TA TA Y 140 0 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal 131500.0
851 852 120 RL NaN 3196 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 8 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 40.0 Gd TA PConc Gd TA Gd Unf 0.0 Unf 0.0 1273.0 1273.0 GasA ... Y SBrkr 1456 0 0 1456 0.0 0.0 2 0 2 1 Gd 7 Typ 1 TA Attchd 2003.0 Fin 2.0 400.0 TA TA Y 143 20 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 215000.0
852 853 75 RL 53.0 7128 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2.5Unf 7 5 1941 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No Rec 364.0 Unf 0.0 554.0 918.0 GasA ... Y SBrkr 918 728 0 1646 0.0 0.0 2 0 4 1 TA 7 Typ 2 Gd Detchd 1941.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 126 0 NaN MnPrv NaN 0 8 2007 WD Normal 164000.0
853 854 80 RL NaN 12095 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam SLvl 6 6 1964 1964 Gable CompShg MetalSd HdBoard BrkFace 115.0 TA Gd CBlock TA TA Gd Rec 564.0 Unf 0.0 563.0 1127.0 GasA ... Y SBrkr 1445 0 0 1445 0.0 0.0 1 1 3 1 TA 7 Typ 1 Fa Attchd 1964.0 RFn 2.0 645.0 TA TA Y 180 0 0 0 0 0 NaN MnPrv NaN 0 8 2009 WD Normal 158000.0
854 855 20 RL 102.0 17920 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 4 1955 1974 Hip CompShg Wd Sdng Plywood None 0.0 TA TA CBlock TA TA Mn ALQ 306.0 Rec 1085.0 372.0 1763.0 GasA ... Y SBrkr 1779 0 0 1779 1.0 0.0 1 1 3 1 TA 6 Typ 1 Gd Attchd 1955.0 Unf 2.0 454.0 TA TA Y 0 418 0 0 312 0 NaN NaN NaN 0 7 2006 WD Abnorml 170000.0
855 856 20 RL NaN 6897 Pave NaN IR1 Lvl AllPub Corner Gtl Sawyer Norm Norm 1Fam 1Story 5 8 1962 2010 Gable CompShg HdBoard HdBoard None 0.0 TA Gd CBlock TA TA No ALQ 659.0 Unf 0.0 381.0 1040.0 GasA ... Y SBrkr 1040 0 0 1040 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1962.0 Unf 1.0 260.0 TA TA Y 0 104 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 127000.0
856 857 80 RL NaN 10970 Pave NaN IR1 Low AllPub Inside Mod CollgCr Norm Norm 1Fam SLvl 6 6 1978 1978 Gable CompShg Plywood HdBoard None 0.0 TA TA CBlock Gd Gd Gd GLQ 505.0 LwQ 435.0 0.0 940.0 GasA ... Y SBrkr 1026 0 0 1026 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1981.0 Unf 2.0 576.0 TA Fa Y 0 0 34 0 0 0 NaN MnPrv NaN 0 10 2008 WD Normal 147000.0
857 858 60 RL 65.0 8125 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1994 1995 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 702.0 702.0 GasA ... Y SBrkr 702 779 0 1481 0.0 0.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1994.0 Fin 2.0 343.0 TA TA Y 0 36 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal 174000.0
858 859 20 RL 80.0 10400 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 7 5 1976 1976 Gable CompShg HdBoard HdBoard BrkFace 189.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 1090.0 1090.0 GasA ... Y SBrkr 1370 0 0 1370 0.0 0.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1976.0 RFn 2.0 479.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 6 2009 WD Family 152000.0
859 860 60 RL NaN 11029 Pave NaN IR1 Lvl AllPub Corner Gtl NWAmes PosA Norm 1Fam 2Story 6 7 1968 1984 Gable CompShg HdBoard HdBoard BrkFace 220.0 TA TA CBlock TA TA Mn BLQ 619.0 Unf 0.0 435.0 1054.0 GasA ... Y SBrkr 1512 1142 0 2654 1.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd Attchd 1968.0 Unf 2.0 619.0 TA TA Y 0 65 0 0 222 0 NaN NaN NaN 0 8 2006 WD Normal 250000.0
860 861 50 RL 55.0 7642 Pave NaN Reg Lvl AllPub Corner Gtl Crawfor Norm Norm 1Fam 1.5Fin 7 8 1918 1998 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd TA BrkTil TA TA No Unf 0.0 Unf 0.0 912.0 912.0 GasA ... Y SBrkr 912 514 0 1426 0.0 0.0 1 1 3 1 Gd 7 Typ 1 Gd Detchd 1925.0 Unf 1.0 216.0 TA TA Y 0 240 0 0 0 0 NaN GdPrv NaN 0 6 2007 WD Normal 189950.0
861 862 190 RL 75.0 11625 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 2fmCon 1Story 5 4 1965 1965 Hip CompShg Plywood HdBoard None 0.0 TA TA PConc TA TA Mn BLQ 841.0 Unf 0.0 198.0 1039.0 GasA ... Y SBrkr 1039 0 0 1039 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1965.0 Unf 2.0 504.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 131500.0
862 863 20 RL 81.0 9672 Pave NaN Reg Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam 1Story 6 5 1984 1985 Hip CompShg HdBoard Plywood None 0.0 TA TA PConc Gd TA No GLQ 338.0 Unf 0.0 702.0 1040.0 GasA ... Y SBrkr 1097 0 0 1097 0.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Attchd 1986.0 Unf 2.0 480.0 TA TA Y 0 0 0 0 0 0 NaN GdPrv NaN 0 5 2010 WD Normal 152000.0
863 864 20 RL 70.0 7931 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1959 1959 Hip CompShg BrkFace Plywood None 0.0 TA TA CBlock TA TA No BLQ 1148.0 Unf 0.0 0.0 1148.0 GasA ... Y SBrkr 1148 0 0 1148 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1959.0 Unf 1.0 672.0 TA TA Y 0 0 0 0 0 0 NaN GdPrv NaN 0 7 2009 WD Normal 132500.0
864 865 20 FV 72.0 8640 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2007 2008 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA No Unf 0.0 Unf 0.0 1372.0 1372.0 GasA ... Y SBrkr 1372 0 0 1372 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2008.0 Fin 2.0 529.0 TA TA Y 0 140 0 0 0 0 NaN NaN NaN 0 5 2008 New Partial 250580.0
865 866 20 RL NaN 8750 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1970 1970 Gable CompShg MetalSd MetalSd BrkFace 76.0 TA TA CBlock TA TA No BLQ 828.0 Unf 0.0 174.0 1002.0 GasA ... Y SBrkr 1002 0 0 1002 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1973.0 Unf 2.0 902.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 8 2009 WD Normal 148500.0
866 867 20 RL 67.0 10656 Pave NaN IR1 HLS AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2006 2007 Gable CompShg VinylSd VinylSd Stone 274.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1638.0 1638.0 GasA ... Y SBrkr 1646 0 0 1646 0.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2007.0 RFn 3.0 870.0 TA TA Y 192 80 0 0 0 0 NaN NaN NaN 0 11 2007 New Partial 248900.0
867 868 20 RL 85.0 6970 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Feedr Norm 1Fam 1Story 4 5 1961 1961 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No ALQ 932.0 Unf 0.0 108.0 1040.0 GasA ... Y SBrkr 1120 0 0 1120 1.0 0.0 1 1 3 1 Fa 5 Typ 0 NaN Attchd 1961.0 RFn 2.0 544.0 TA TA Y 168 0 0 0 0 0 NaN NaN Shed 400 5 2007 WD Normal 129000.0
868 869 60 RL NaN 14762 Pave NaN IR2 Lvl AllPub Corner Gtl Gilbert Feedr Norm 1Fam 2Story 5 6 1948 1950 Gable CompShg Plywood Plywood None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1547 720 53 2320 0.0 0.0 2 0 2 1 TA 7 Typ 1 TA Attchd 1979.0 Unf 2.0 672.0 TA TA P 120 144 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 169000.0
869 870 60 RL 80.0 9938 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 7 5 1993 1994 Gable CompShg MetalSd MetalSd BrkFace 246.0 Gd TA PConc Gd TA No GLQ 750.0 Unf 0.0 300.0 1050.0 GasA ... Y SBrkr 1062 887 0 1949 1.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1993.0 Fin 2.0 574.0 TA TA Y 156 90 0 0 0 0 NaN GdPrv NaN 0 6 2010 WD Normal 236000.0
870 871 20 RL 60.0 6600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes PosN Norm 1Fam 1Story 5 5 1962 1962 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 894.0 894.0 GasA ... N SBrkr 894 0 0 894 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1962.0 Unf 1.0 308.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal 109500.0
871 872 60 RL 70.0 8750 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 6 5 1998 1998 Gable CompShg VinylSd VinylSd BrkFace 116.0 TA TA PConc Gd TA No GLQ 505.0 Unf 0.0 299.0 804.0 GasA ... Y SBrkr 804 878 0 1682 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1998.0 RFn 2.0 523.0 TA TA Y 0 77 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 200500.0
872 873 20 RL 74.0 8892 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 7 1953 1996 Gable CompShg WdShing Wd Shng None 0.0 Gd TA Stone TA TA Av Unf 0.0 Unf 0.0 105.0 105.0 GasA ... Y SBrkr 910 0 0 910 0.0 0.0 1 0 3 1 Gd 5 Typ 0 NaN Attchd 1953.0 Unf 2.0 414.0 TA TA Y 196 0 150 0 0 0 NaN GdWo NaN 0 10 2008 WD Normal 116000.0
873 874 40 RL 60.0 12144 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1949 1950 Gable CompShg HdBoard HdBoard None 0.0 Gd TA CBlock TA TA No Rec 375.0 Unf 0.0 457.0 832.0 GasA ... Y SBrkr 1036 0 232 1268 0.0 0.0 1 0 3 1 TA 6 Typ 1 Gd Attchd 1949.0 Unf 1.0 288.0 TA TA Y 0 28 0 0 0 0 NaN NaN Othr 0 9 2009 WD Normal 133000.0
874 875 50 RM 52.0 5720 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1.5Fin 5 6 1941 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 676.0 676.0 GasA ... Y SBrkr 676 455 0 1131 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Detchd 1941.0 Unf 1.0 200.0 TA TA Y 26 0 0 0 0 0 NaN NaN NaN 0 8 2009 WD Abnorml 66500.0
875 876 60 FV 75.0 9000 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 2007 2007 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA Av GLQ 64.0 Unf 0.0 1120.0 1184.0 GasA ... Y SBrkr 1184 1426 0 2610 0.0 0.0 2 1 4 1 Ex 11 Typ 1 Gd BuiltIn 2007.0 Fin 2.0 550.0 TA TA Y 208 364 0 0 0 0 NaN NaN NaN 0 8 2007 New Partial 303477.0
876 877 20 RL 94.0 25286 Pave NaN Reg HLS AllPub Inside Mod Mitchel Norm Norm 1Fam 1Story 4 5 1963 1963 Gable CompShg HdBoard Plywood None 0.0 TA TA PConc TA TA Gd ALQ 633.0 Unf 0.0 431.0 1064.0 GasA ... Y SBrkr 1040 0 0 1040 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1963.0 Unf 2.0 648.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 1 2007 WD Normal 132250.0
877 878 60 RL 74.0 8834 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2004 2005 Hip CompShg VinylSd VinylSd Stone 216.0 Gd TA PConc Ex TA No GLQ 1170.0 Unf 0.0 292.0 1462.0 GasA ... Y SBrkr 1462 762 0 2224 1.0 0.0 2 1 4 1 Ex 10 Typ 1 Gd Attchd 2004.0 Fin 3.0 738.0 TA TA Y 184 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 350000.0
878 879 85 RL 88.0 11782 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam SFoyer 5 7 1961 1995 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA Av ALQ 899.0 Unf 0.0 210.0 1109.0 GasA ... Y SBrkr 1155 0 0 1155 1.0 0.0 1 0 3 1 Gd 6 Min2 0 NaN Detchd 1987.0 Unf 2.0 576.0 TA TA Y 192 0 0 0 0 0 NaN MnPrv Shed 400 6 2010 WD Normal 148000.0
879 880 20 RL NaN 7000 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 1Story 5 8 1978 2005 Gable CompShg VinylSd VinylSd BrkFace 90.0 Gd Gd CBlock TA TA No ALQ 646.0 Unf 0.0 218.0 864.0 GasA ... Y SBrkr 864 0 0 864 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1978.0 Unf 1.0 336.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 7 2009 WD Normal 136500.0
880 881 20 RL 60.0 7024 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Ex Gd No ALQ 980.0 Unf 0.0 110.0 1090.0 GasA ... Y SBrkr 1090 0 0 1090 1.0 0.0 1 1 2 1 TA 5 Typ 0 NaN Attchd 2005.0 Fin 2.0 450.0 TA TA Y 0 49 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 157000.0
881 882 50 RL 44.0 13758 Pave NaN IR1 Lvl AllPub CulDSac Gtl Timber Norm Norm 1Fam 1.5Fin 7 5 1990 1991 Gable CompShg HdBoard HdBoard BrkFace 117.0 Gd Gd CBlock Gd TA Mn LwQ 902.0 Unf 0.0 254.0 1156.0 GasA ... Y SBrkr 1187 530 0 1717 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1990.0 RFn 2.0 400.0 TA TA Y 168 36 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal 187500.0
882 883 60 RL NaN 9636 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1992 1993 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 808.0 808.0 GasA ... Y SBrkr 808 785 0 1593 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA BuiltIn 1993.0 RFn 2.0 389.0 TA TA Y 342 40 0 0 0 0 NaN MnPrv NaN 0 12 2009 WD Normal 178000.0
883 884 75 RL 60.0 6204 Pave NaN Reg Bnk AllPub Inside Gtl SWISU Norm Norm 1Fam 2.5Fin 4 5 1912 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd TA PConc TA Fa No Unf 0.0 Unf 0.0 795.0 795.0 GasA ... N SBrkr 954 795 481 2230 1.0 0.0 1 0 5 1 TA 10 Typ 0 NaN Detchd 1997.0 Unf 1.0 440.0 TA Gd Y 0 188 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal 118500.0
884 885 20 RL 65.0 7150 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1967 1967 Gable CompShg HdBoard HdBoard BrkFace 60.0 TA TA CBlock TA TA No BLQ 432.0 Unf 0.0 460.0 892.0 GasA ... Y SBrkr 892 0 0 892 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1967.0 RFn 1.0 288.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 7 2009 WD Normal 100000.0
885 886 120 FV 50.0 5119 Pave NaN IR1 Lvl AllPub CulDSac Gtl Somerst Norm Norm TwnhsE 1Story 9 5 1999 2000 Gable CompShg MetalSd MetalSd BrkFace 60.0 Gd TA PConc Ex TA Av GLQ 1238.0 Unf 0.0 460.0 1698.0 GasA ... Y SBrkr 1709 0 0 1709 1.0 0.0 2 0 2 1 Gd 5 Typ 1 TA Attchd 1999.0 Fin 2.0 506.0 TA TA Y 97 65 0 0 0 0 NaN NaN NaN 0 1 2008 CWD Abnorml 328900.0
886 887 90 RL 70.0 8393 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm Duplex 1Story 5 5 1959 2005 Gable CompShg MetalSd MetalSd BrkFace 122.0 TA TA CBlock TA TA No LwQ 528.0 Unf 0.0 1098.0 1626.0 GasA ... Y SBrkr 1712 0 0 1712 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Attchd 2005.0 Fin 2.0 588.0 TA TA Y 272 54 0 0 0 0 NaN NaN NaN 0 6 2006 WD Family 145000.0
887 888 50 RL 59.0 16466 Pave NaN IR1 Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 5 7 1955 1955 Gable CompShg MetalSd MetalSd None 0.0 TA Gd PConc TA TA No Unf 0.0 Unf 0.0 816.0 816.0 GasA ... Y SBrkr 872 521 0 1393 0.0 0.0 1 1 3 1 TA 8 Typ 0 NaN Attchd 1955.0 Unf 1.0 300.0 TA TA Y 121 0 0 0 265 0 NaN NaN NaN 0 4 2008 WD Normal 135500.0
888 889 20 RL 95.0 15865 Pave NaN IR1 Lvl AllPub Inside Mod NAmes Norm Norm 1Fam 1Story 8 6 1970 1970 Flat Tar&Grv Wd Sdng Wd Sdng None 0.0 Gd Gd PConc TA Gd Gd ALQ 351.0 Rec 823.0 1043.0 2217.0 GasA ... Y SBrkr 2217 0 0 2217 1.0 0.0 2 0 4 1 Gd 8 Typ 1 TA Attchd 1970.0 Unf 2.0 621.0 TA TA Y 81 207 0 0 224 0 NaN NaN NaN 0 10 2007 WD Normal 268000.0
889 890 20 RL 128.0 12160 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam 1Story 6 4 1953 1953 Hip CompShg Wd Sdng Wd Sdng BrkFace 90.0 TA TA CBlock TA TA No BLQ 1024.0 Unf 0.0 481.0 1505.0 GasA ... Y SBrkr 1505 0 0 1505 1.0 0.0 1 0 2 1 TA 6 Typ 1 TA Attchd 1953.0 RFn 2.0 505.0 TA TA Y 0 0 0 162 0 0 NaN NaN NaN 0 2 2009 WD Normal 149500.0
890 891 50 RL 60.0 8064 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Artery Norm 1Fam 1.5Fin 5 7 1949 2006 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA Mn Unf 0.0 Unf 0.0 672.0 672.0 GasA ... Y SBrkr 672 252 0 924 0.0 0.0 1 0 3 1 TA 6 Typ 1 Po Detchd 2003.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv Shed 2000 7 2007 WD Normal 122900.0
891 892 60 RL 70.0 11184 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 2Story 6 5 1978 1978 Hip CompShg HdBoard HdBoard BrkFace 92.0 TA TA CBlock TA TA No LwQ 226.0 Rec 500.0 192.0 918.0 GasA ... Y SBrkr 918 765 0 1683 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1978.0 RFn 2.0 440.0 TA TA Y 243 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 172500.0
892 893 20 RL 70.0 8414 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 6 8 1963 2003 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No GLQ 663.0 Unf 0.0 396.0 1059.0 GasA ... Y SBrkr 1068 0 0 1068 0.0 1.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1963.0 RFn 1.0 264.0 TA TA Y 192 0 0 0 0 0 NaN MnPrv NaN 0 2 2006 WD Normal 154500.0
893 894 20 RL NaN 13284 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer PosN Norm 1Fam 1Story 5 5 1954 1954 Gable CompShg Wd Sdng Plywood None 0.0 TA TA PConc Gd TA Mn BLQ 1064.0 Unf 0.0 319.0 1383.0 GasA ... Y SBrkr 1383 0 0 1383 1.0 0.0 1 0 3 1 TA 6 Typ 1 Gd Attchd 1954.0 Unf 1.0 354.0 TA TA Y 511 116 0 0 0 0 NaN GdPrv NaN 0 6 2008 WD Normal 165000.0
894 895 90 RL 64.0 7018 Pave NaN Reg Bnk AllPub Inside Gtl SawyerW Norm Norm Duplex 1Story 5 5 1979 1979 Gable CompShg Plywood Plywood None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1535 0 0 1535 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Attchd 1979.0 Unf 2.0 400.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Alloca 118858.0
895 896 60 RL 71.0 7056 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 2Story 6 5 1963 1963 Hip CompShg HdBoard HdBoard BrkFace 415.0 TA TA CBlock TA TA No BLQ 400.0 Unf 0.0 380.0 780.0 GasA ... Y SBrkr 983 813 0 1796 1.0 0.0 1 1 4 1 TA 8 Typ 1 TA Attchd 1963.0 RFn 2.0 483.0 TA TA Y 0 50 0 0 0 0 NaN NaN NaN 0 10 2008 WD Normal 140000.0
896 897 30 RM 50.0 8765 Pave Grvl Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 4 6 1936 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No ALQ 285.0 Unf 0.0 666.0 951.0 GasA ... N SBrkr 951 0 0 951 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1936.0 Unf 1.0 327.0 TA TA Y 0 28 0 0 0 0 NaN NaN NaN 0 4 2006 WD Abnorml 106500.0
897 898 90 RL 64.0 7018 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Feedr Norm Duplex 2Story 5 5 1979 1979 Gable CompShg Plywood Plywood None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1120 1120 0 2240 0.0 0.0 2 0 6 2 TA 12 Typ 0 NaN Detchd 1979.0 Unf 2.0 528.0 TA TA Y 154 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Alloca 142953.0
898 899 20 RL 100.0 12919 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2009 2010 Hip CompShg VinylSd VinylSd Stone 760.0 Ex TA PConc Ex TA Gd GLQ 2188.0 Unf 0.0 142.0 2330.0 GasA ... Y SBrkr 2364 0 0 2364 1.0 0.0 2 1 2 1 Ex 11 Typ 2 Gd Attchd 2009.0 Fin 3.0 820.0 TA TA Y 0 67 0 0 0 0 NaN NaN NaN 0 3 2010 New Partial 611657.0
899 900 20 RL 65.0 6993 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Feedr Norm 1Fam 1Story 5 7 1961 1994 Gable CompShg HdBoard Plywood None 0.0 TA TA CBlock TA TA No BLQ 465.0 Unf 0.0 447.0 912.0 GasA ... Y SBrkr 1236 0 0 1236 0.0 0.0 1 0 3 1 TA 6 Typ 1 TA Attchd 1961.0 Unf 1.0 288.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 135000.0
900 901 20 RL NaN 7340 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 4 6 1971 1971 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No ALQ 322.0 Unf 0.0 536.0 858.0 GasA ... Y SBrkr 858 0 0 858 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1979.0 Unf 1.0 684.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 110000.0
901 902 20 RL 64.0 8712 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1957 2000 Hip CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA Mn BLQ 860.0 Unf 0.0 132.0 992.0 GasA ... Y SBrkr 1306 0 0 1306 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1968.0 Unf 1.0 756.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 153000.0
902 903 60 RL 63.0 7875 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 783.0 783.0 GasA ... Y SBrkr 807 702 0 1509 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2003.0 Fin 2.0 393.0 TA TA Y 0 75 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 180000.0
903 904 20 RL 50.0 14859 Pave NaN IR1 HLS AllPub CulDSac Gtl Gilbert Norm Norm 1Fam 1Story 7 5 2006 2006 Hip CompShg VinylSd VinylSd BrkFace 27.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1670.0 1670.0 GasA ... Y SBrkr 1670 0 0 1670 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 RFn 3.0 690.0 TA TA Y 144 60 0 0 0 0 NaN NaN NaN 0 8 2006 New Partial 240000.0
904 905 20 RL NaN 6173 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 6 1967 1967 Gable CompShg HdBoard Wd Sdng BrkFace 75.0 TA TA CBlock TA TA No GLQ 599.0 Unf 0.0 277.0 876.0 GasA ... Y SBrkr 902 0 0 902 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1967.0 Unf 1.0 288.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 8 2007 WD Normal 125500.0
905 906 20 RL 80.0 9920 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1954 1954 Gable CompShg HdBoard HdBoard Stone 110.0 TA TA CBlock TA TA No Rec 354.0 LwQ 290.0 412.0 1056.0 GasA ... Y SBrkr 1063 0 0 1063 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1954.0 RFn 1.0 280.0 TA TA Y 0 0 164 0 0 0 NaN MnPrv NaN 0 2 2010 WD Normal 128000.0
906 907 20 RL 116.0 13501 Pave NaN IR1 Lvl AllPub Corner Gtl Somerst Norm Norm 1Fam 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd Stone 208.0 Gd TA PConc Gd TA No GLQ 63.0 Unf 0.0 1560.0 1623.0 GasA ... Y SBrkr 1636 0 0 1636 1.0 0.0 2 0 3 1 Gd 8 Typ 1 Gd Attchd 2006.0 RFn 3.0 865.0 TA TA Y 0 60 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 255000.0
907 908 50 RL 86.0 11500 Pave NaN IR1 Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1.5Fin 7 7 1936 1987 Gable CompShg BrkFace BrkFace None 0.0 Gd TA CBlock Gd TA No Rec 223.0 Unf 0.0 794.0 1017.0 GasA ... Y SBrkr 1020 1037 0 2057 0.0 0.0 1 1 3 1 Gd 6 Typ 1 Gd Attchd 1936.0 Fin 1.0 180.0 Fa TA Y 0 0 0 0 322 0 NaN NaN NaN 0 6 2006 WD Normal 250000.0
908 909 20 RL NaN 8885 Pave NaN IR1 Low AllPub Inside Mod Mitchel Norm Norm 1Fam 1Story 5 5 1983 1983 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA Av BLQ 301.0 ALQ 324.0 239.0 864.0 GasA ... Y SBrkr 902 0 0 902 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1983.0 Unf 2.0 484.0 TA TA Y 164 0 0 0 0 0 NaN MnPrv NaN 0 6 2006 WD Normal 131000.0
909 910 60 RL 149.0 12589 Pave NaN IR2 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 742.0 742.0 GasA ... Y SBrkr 742 742 0 1484 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2005.0 Fin 2.0 390.0 TA TA Y 36 24 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 174000.0
910 911 90 RL 80.0 11600 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Feedr Norm Duplex 2Story 5 5 1960 1960 Gable CompShg MetalSd MetalSd BrkFace 361.0 TA TA CBlock TA TA No Rec 443.0 Unf 0.0 662.0 1105.0 GasA ... Y FuseA 1105 1169 0 2274 0.0 0.0 2 0 5 2 TA 12 Typ 0 NaN Detchd 1960.0 Unf 2.0 480.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 1 2010 WD Normal 154300.0
911 912 20 RL NaN 9286 Pave NaN IR1 Lvl AllPub CulDSac Mod CollgCr Norm Norm 1Fam 1Story 5 7 1977 1989 Gable CompShg HdBoard Plywood None 0.0 TA TA CBlock Gd Gd Av ALQ 196.0 Unf 0.0 1072.0 1268.0 GasA ... Y SBrkr 1268 0 0 1268 0.0 0.0 1 1 3 1 Gd 5 Typ 0 NaN Detchd 1978.0 Unf 1.0 252.0 TA TA Y 173 0 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal 143500.0
912 913 30 RM 51.0 6120 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 5 7 1925 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Rec 489.0 Unf 0.0 279.0 768.0 GasA ... N SBrkr 1015 0 0 1015 0.0 0.0 1 0 3 1 TA 6 Min1 0 NaN Detchd 1925.0 Unf 1.0 450.0 TA TA Y 0 0 112 0 120 0 NaN MnPrv Shed 620 7 2006 WD Abnorml 88000.0
913 914 90 RH 82.0 6270 Pave NaN Reg HLS AllPub Inside Gtl Crawfor Norm Norm Duplex 2Story 5 6 1949 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No BLQ 284.0 Unf 0.0 717.0 1001.0 GasA ... N FuseA 1001 1001 0 2002 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN 2Types 1949.0 Unf 3.0 871.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 145000.0
914 915 160 FV 30.0 3000 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 2Story 6 5 2009 2009 Gable CompShg VinylSd VinylSd Stone 76.0 Gd TA PConc Gd TA Av GLQ 294.0 Unf 0.0 318.0 612.0 GasA ... Y SBrkr 612 612 0 1224 0.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Detchd 2009.0 RFn 2.0 528.0 TA TA Y 0 234 0 0 0 0 NaN NaN NaN 0 6 2009 New Partial 173733.0
915 916 160 RM 21.0 2001 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs 2Story 4 5 1970 1970 Gable CompShg CemntBd CmentBd BrkFace 80.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 546.0 546.0 GasA ... Y SBrkr 546 546 0 1092 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1970.0 Unf 1.0 286.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 1 2007 WD Normal 75000.0
916 917 20 C (all) 50.0 9000 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 2 3 1949 1950 Gable CompShg AsbShng AsbShng None 0.0 TA TA CBlock TA TA Av BLQ 50.0 Unf 0.0 430.0 480.0 GasA ... N FuseA 480 0 0 480 1.0 0.0 0 0 1 1 TA 4 Typ 0 NaN Detchd 1958.0 Unf 1.0 308.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2006 WD Abnorml 35311.0
917 918 20 RL NaN 17140 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 6 1956 1956 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No ALQ 1059.0 Unf 0.0 75.0 1134.0 GasA ... Y FuseA 1229 0 0 1229 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1956.0 RFn 1.0 284.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal 135000.0
918 919 60 RL 103.0 13125 Pave NaN IR1 Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam 2Story 7 5 1991 1991 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Ex TA Mn BLQ 48.0 GLQ 634.0 422.0 1104.0 GasA ... Y SBrkr 912 1215 0 2127 1.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Attchd 1991.0 RFn 3.0 833.0 TA TA Y 72 192 224 0 0 0 NaN GdPrv NaN 0 11 2007 WD Normal 238000.0
919 920 20 RL 87.0 11029 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 8 1958 2002 Hip CompShg MetalSd MetalSd None 0.0 Ex TA CBlock Gd TA No ALQ 528.0 BLQ 411.0 245.0 1184.0 GasA ... Y SBrkr 1414 0 0 1414 1.0 0.0 1 0 3 1 TA 6 Min1 1 TA Attchd 1990.0 Unf 2.0 601.0 TA TA Y 0 51 0 0 190 0 NaN NaN NaN 0 5 2008 WD Normal 176500.0
920 921 60 RL 70.0 8462 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 6 5 1994 1994 Gable CompShg HdBoard HdBoard BrkFace 105.0 Gd Gd PConc Gd Gd No GLQ 814.0 Unf 0.0 114.0 928.0 GasA ... Y SBrkr 936 785 0 1721 0.0 1.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1994.0 RFn 2.0 471.0 TA TA Y 300 87 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 201000.0
921 922 90 RL 67.0 8777 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Feedr Norm Duplex 1.5Fin 5 7 1900 2003 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No ALQ 1084.0 Unf 0.0 188.0 1272.0 GasA ... Y SBrkr 1272 928 0 2200 2.0 0.0 2 2 4 2 TA 9 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 70 0 0 0 0 NaN GdPrv NaN 0 9 2008 WD Normal 145900.0
922 923 20 RL 65.0 10237 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert RRAn Norm 1Fam 1Story 6 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 28.0 Unf 0.0 1288.0 1316.0 GasA ... Y SBrkr 1316 0 0 1316 0.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2005.0 Fin 2.0 397.0 TA TA Y 100 0 0 23 0 0 NaN NaN NaN 0 10 2006 New Partial 169990.0
923 924 120 RL 50.0 8012 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm TwnhsE 1Story 6 5 1993 1994 Gable CompShg Plywood Plywood None 0.0 Gd TA PConc Gd TA No LwQ 165.0 GLQ 841.0 598.0 1604.0 GasA ... Y SBrkr 1617 0 0 1617 1.0 0.0 2 0 2 1 Gd 5 Typ 1 Fa Attchd 1993.0 RFn 2.0 533.0 TA TA Y 0 69 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 193000.0
924 925 20 RL 79.0 10240 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 6 1980 1980 Gable CompShg Plywood Plywood BrkFace 157.0 TA Gd CBlock Gd TA No BLQ 625.0 LwQ 1061.0 0.0 1686.0 GasA ... Y SBrkr 1686 0 0 1686 1.0 0.0 2 0 3 1 TA 7 Typ 1 TA Attchd 1980.0 Unf 2.0 612.0 TA TA Y 384 131 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 207500.0
925 926 20 RL NaN 15611 Pave NaN IR1 Lvl AllPub Corner Gtl NWAmes Norm Norm 1Fam 1Story 5 6 1977 1977 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Av ALQ 767.0 LwQ 93.0 266.0 1126.0 GasA ... Y SBrkr 1126 0 0 1126 0.0 1.0 2 0 3 1 Ex 6 Typ 0 NaN Attchd 1977.0 RFn 2.0 540.0 TA TA Y 180 0 0 0 0 0 NaN NaN NaN 0 3 2008 WD Abnorml 175000.0
926 927 60 RL 93.0 11999 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2003 2004 Hip CompShg VinylSd VinylSd BrkFace 340.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1181.0 1181.0 GasA ... Y SBrkr 1234 1140 0 2374 0.0 0.0 2 1 4 1 Ex 10 Typ 1 Gd BuiltIn 2003.0 Fin 3.0 656.0 TA TA Y 104 100 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 285000.0
927 928 60 RL NaN 9900 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Feedr Norm 1Fam 2Story 7 5 1968 1968 Gable CompShg MetalSd MetalSd BrkFace 342.0 TA TA CBlock TA TA No BLQ 552.0 Unf 0.0 280.0 832.0 GasA ... Y SBrkr 1098 880 0 1978 0.0 0.0 2 1 4 1 TA 9 Typ 1 Gd Attchd 1968.0 RFn 2.0 486.0 TA TA Y 0 43 0 0 0 0 NaN GdPrv NaN 0 4 2008 WD Normal 176000.0
928 929 20 RL NaN 11838 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2001 2001 Hip CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1753.0 1753.0 GasA ... Y SBrkr 1788 0 0 1788 0.0 0.0 2 0 3 1 Ex 7 Typ 1 TA Attchd 2001.0 RFn 2.0 522.0 TA TA Y 202 151 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 236500.0
929 930 60 RL NaN 13006 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 7 5 1997 1997 Gable CompShg HdBoard HdBoard BrkFace 285.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 964.0 964.0 GasA ... Y SBrkr 993 1243 0 2236 0.0 0.0 2 1 4 1 Gd 8 Typ 1 TA BuiltIn 1997.0 Fin 2.0 642.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2006 WD Normal 222000.0
930 931 20 RL 73.0 8925 Pave NaN IR1 HLS AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 16.0 Unf 0.0 1450.0 1466.0 GasA ... Y SBrkr 1466 0 0 1466 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2007.0 Fin 3.0 610.0 TA TA Y 100 18 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 201000.0
931 932 20 RL 70.0 9100 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1965 1965 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No BLQ 338.0 Rec 466.0 121.0 925.0 GasA ... Y SBrkr 925 0 0 925 0.0 1.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1965.0 Unf 1.0 429.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 7 2009 WD Normal 117500.0
932 933 20 RL 84.0 11670 Pave NaN IR1 Lvl AllPub Corner Gtl Somerst RRNn Norm 1Fam 1Story 9 5 2006 2006 Hip CompShg VinylSd ImStucc Stone 302.0 Ex TA PConc Ex Gd No Unf 0.0 Unf 0.0 1905.0 1905.0 GasA ... Y SBrkr 1905 0 0 1905 0.0 0.0 2 0 3 1 Ex 8 Typ 1 Gd Attchd 2006.0 Fin 3.0 788.0 TA TA Y 0 191 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal 320000.0
933 934 20 RL 63.0 8487 Pave NaN Reg Lvl AllPub FR2 Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 210.0 Gd TA PConc Gd TA Av GLQ 20.0 Unf 0.0 1480.0 1500.0 GasA ... Y SBrkr 1500 0 0 1500 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2004.0 RFn 2.0 570.0 TA TA Y 192 36 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal 190000.0
934 935 20 RL 313.0 27650 Pave NaN IR2 HLS AllPub Inside Mod NAmes PosA Norm 1Fam 1Story 7 7 1960 2007 Flat Tar&Grv Wd Sdng Wd Sdng None 0.0 TA TA CBlock Gd TA Gd GLQ 425.0 Unf 0.0 160.0 585.0 GasA ... Y SBrkr 2069 0 0 2069 1.0 0.0 2 0 4 1 Gd 9 Typ 1 Gd Attchd 1960.0 RFn 2.0 505.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2008 WD Normal 242000.0
935 936 30 RL 52.0 5825 Pave NaN IR1 Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 4 5 1926 1953 Gable CompShg MetalSd MetalSd BrkFace 108.0 TA Gd PConc Fa TA Mn Unf 0.0 Unf 0.0 600.0 600.0 GasA ... Y SBrkr 747 0 0 747 0.0 0.0 1 0 1 1 TA 5 Typ 0 NaN Detchd 1953.0 Unf 2.0 528.0 TA TA Y 0 0 32 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 79900.0
936 937 20 RL 67.0 10083 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd NaN NaN Gd TA PConc Gd TA No GLQ 833.0 Unf 0.0 343.0 1176.0 GasA ... Y SBrkr 1200 0 0 1200 1.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 2003.0 RFn 2.0 555.0 TA TA Y 0 41 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal 184900.0
937 938 60 RL 75.0 9675 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Mn GLQ 341.0 Unf 0.0 772.0 1113.0 GasA ... Y SBrkr 1113 858 0 1971 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2005.0 RFn 2.0 689.0 TA TA Y 0 48 0 0 0 0 NaN NaN NaN 0 2 2009 WD Normal 253000.0
938 939 60 RL 73.0 8760 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd Gd Mn GLQ 464.0 Unf 0.0 927.0 1391.0 GasA ... Y SBrkr 1391 571 0 1962 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2006.0 RFn 3.0 868.0 TA TA Y 0 90 0 0 0 0 NaN NaN NaN 0 8 2006 New Partial 239799.0
939 940 70 RL NaN 24090 Pave NaN Reg Lvl AllPub Inside Gtl ClearCr Norm Norm 1Fam 2Story 7 7 1940 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA Mn Unf 0.0 Unf 0.0 1032.0 1032.0 GasA ... Y SBrkr 1207 1196 0 2403 0.0 0.0 2 0 4 1 TA 10 Typ 2 TA Attchd 1940.0 Unf 1.0 349.0 TA TA Y 56 0 318 0 0 0 NaN NaN NaN 0 6 2010 COD Normal 244400.0
940 941 90 RL 55.0 12640 Pave NaN IR1 Lvl AllPub Inside Gtl Mitchel Norm Norm Duplex 1Story 6 5 1976 1976 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA Gd Rec 936.0 LwQ 396.0 396.0 1728.0 GasA ... Y SBrkr 1728 0 0 1728 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Attchd 1976.0 Unf 2.0 574.0 TA TA Y 40 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 150900.0
941 942 60 RL NaN 8755 Pave NaN IR1 Lvl AllPub FR2 Gtl Gilbert RRNn Norm 1Fam 2Story 7 5 1999 1999 Gable CompShg VinylSd VinylSd BrkFace 298.0 Gd TA PConc Gd TA No ALQ 772.0 Unf 0.0 220.0 992.0 GasA ... Y SBrkr 1022 1038 0 2060 1.0 0.0 2 1 3 1 Gd 8 Typ 1 TA BuiltIn 1999.0 RFn 2.0 390.0 TA TA Y 0 0 0 168 0 0 NaN GdPrv NaN 0 6 2009 WD Normal 214000.0
942 943 90 RL 42.0 7711 Pave NaN IR1 Lvl AllPub Inside Gtl Edwards Norm Norm Duplex 1Story 4 3 1977 1977 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc Gd TA Gd GLQ 1440.0 Unf 0.0 0.0 1440.0 GasA ... Y SBrkr 1440 0 0 1440 2.0 0.0 2 0 4 2 TA 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 321 0 0 0 0 0 NaN NaN NaN 0 8 2007 Oth Abnorml 150000.0
943 944 90 RL 100.0 25000 Pave NaN Reg Low AllPub Inside Gtl Mitchel Norm Norm Duplex 1Story 5 4 1967 1967 Gable CompShg HdBoard Plywood None 0.0 TA TA CBlock TA TA Av Unf 0.0 Unf 0.0 1632.0 1632.0 GasA ... Y SBrkr 1632 0 0 1632 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Attchd 1967.0 Unf 2.0 576.0 TA TA P 0 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 143000.0
944 945 20 RL NaN 14375 Pave NaN IR1 Lvl NoSeWa CulDSac Gtl Timber Norm Norm 1Fam SLvl 6 6 1958 1958 Gable CompShg HdBoard HdBoard BrkFace 541.0 TA TA CBlock TA TA No GLQ 111.0 Rec 354.0 354.0 819.0 GasA ... Y FuseA 1344 0 0 1344 0.0 1.0 1 0 3 1 Gd 7 Typ 1 Gd Basment 1958.0 RFn 2.0 525.0 TA TA Y 0 118 0 0 233 0 NaN NaN NaN 0 1 2009 COD Abnorml 137500.0
945 946 50 RM 98.0 8820 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1.5Fin 5 6 1890 1996 Hip CompShg VinylSd VinylSd None 0.0 TA TA BrkTil TA TA No LwQ 1088.0 Unf 0.0 0.0 1088.0 GasA ... Y SBrkr 1188 561 120 1869 0.0 0.0 1 0 2 1 TA 7 Typ 0 NaN Detchd 1963.0 Unf 2.0 456.0 TA TA Y 48 0 244 0 0 0 NaN MnWw NaN 0 9 2009 WD Normal 124900.0
946 947 80 RL 70.0 8163 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 5 6 1959 1959 Gable CompShg HdBoard HdBoard BrkFace 128.0 TA Gd CBlock TA TA Av ALQ 748.0 BLQ 294.0 102.0 1144.0 GasA ... Y SBrkr 1144 0 0 1144 1.0 0.0 1 0 3 1 TA 6 Typ 1 TA Attchd 1959.0 RFn 1.0 796.0 TA TA Y 86 0 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal 143000.0
947 948 20 RL 85.0 14536 Pave NaN Reg Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2002 2003 Hip CompShg VinylSd VinylSd BrkFace 236.0 Gd TA PConc Gd TA Av GLQ 1300.0 Unf 0.0 316.0 1616.0 GasA ... Y SBrkr 1629 0 0 1629 1.0 0.0 2 0 3 1 Gd 9 Typ 1 Gd Attchd 2002.0 Fin 3.0 808.0 TA TA Y 0 252 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal 270000.0
948 949 60 RL 65.0 14006 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd BrkFace 144.0 Gd TA PConc Gd TA NaN Unf 0.0 Unf 0.0 936.0 936.0 GasA ... Y SBrkr 936 840 0 1776 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 2002.0 RFn 2.0 474.0 TA TA Y 144 96 0 0 0 0 NaN NaN NaN 0 2 2006 WD Normal 192500.0
949 950 20 RL 78.0 9360 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 7 1972 2006 Hip CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No ALQ 982.0 Unf 0.0 179.0 1161.0 GasA ... Y SBrkr 1381 0 0 1381 1.0 0.0 1 1 3 1 Gd 5 Typ 1 TA Attchd 1972.0 RFn 2.0 676.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal 197500.0
950 951 20 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 8 1950 2002 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No ALQ 398.0 BLQ 149.0 317.0 864.0 GasA ... Y SBrkr 864 0 0 864 1.0 0.0 1 0 3 1 Gd 5 Typ 0 NaN Detchd 1980.0 RFn 2.0 720.0 TA TA Y 194 0 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 129000.0
951 952 20 RH 60.0 7800 Pave NaN Reg Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam 1Story 5 5 1965 1965 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No BLQ 641.0 Unf 0.0 187.0 828.0 GasA ... Y SBrkr 965 0 0 965 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1979.0 Unf 1.0 300.0 TA TA Y 421 0 0 0 0 0 NaN MnPrv NaN 0 7 2006 WD Abnorml 119900.0
952 953 85 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam SFoyer 5 8 1972 2003 Gable CompShg WdShing HdBoard None 0.0 TA Gd CBlock Gd TA Av GLQ 660.0 Unf 0.0 108.0 768.0 GasA ... Y SBrkr 768 0 0 768 0.0 1.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1974.0 Fin 1.0 396.0 TA TA Y 192 0 0 0 0 0 NaN MnPrv NaN 0 4 2009 WD Normal 133900.0
953 954 60 RL NaN 11075 Pave NaN IR1 Lvl AllPub Inside Mod Mitchel Norm Norm 1Fam 2Story 5 4 1969 1969 Gable CompShg HdBoard HdBoard BrkFace 232.0 TA TA CBlock TA TA Av ALQ 562.0 LwQ 193.0 29.0 784.0 GasA ... Y SBrkr 1168 800 0 1968 0.0 1.0 2 1 4 1 TA 7 Min2 1 Po Attchd 1969.0 RFn 2.0 530.0 TA TA Y 305 189 0 0 0 0 NaN MnPrv Shed 400 9 2008 WD Normal 172000.0
954 955 90 RL 35.0 9400 Pave NaN IR1 Lvl AllPub CulDSac Gtl Edwards Norm Norm Duplex SFoyer 6 5 1975 1975 Flat Tar&Grv WdShing Plywood BrkFace 250.0 TA TA CBlock Gd Gd Gd GLQ 945.0 Unf 0.0 0.0 945.0 GasA ... Y SBrkr 980 0 0 980 0.0 2.0 2 0 4 0 TA 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2006 WD AdjLand 127500.0
955 956 90 RH 82.0 7136 Pave NaN IR1 HLS AllPub Inside Gtl Crawfor Norm Norm Duplex 2Story 6 6 1946 1950 Gable CompShg MetalSd MetalSd BrkFace 423.0 TA TA CBlock Gd TA No Rec 484.0 Unf 0.0 495.0 979.0 GasA ... N FuseF 979 979 0 1958 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Attchd 1946.0 Unf 2.0 492.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 145000.0
956 957 160 RM 24.0 1300 Pave NaN Reg Lvl AllPub Inside Gtl Blueste Norm Norm TwnhsE 2Story 6 6 1980 1980 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Gd TA No ALQ 285.0 Unf 0.0 276.0 561.0 GasA ... Y SBrkr 561 668 0 1229 0.0 0.0 1 1 2 1 TA 5 Typ 1 TA Attchd 1980.0 Fin 2.0 462.0 TA TA Y 150 0 0 0 0 0 NaN GdPrv NaN 0 5 2009 WD Normal 124000.0
957 958 20 RL 70.0 7420 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1962 1962 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 417.0 Unf 0.0 640.0 1057.0 GasA ... Y SBrkr 1057 0 0 1057 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1977.0 Fin 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal 132000.0
958 959 20 RL 65.0 8450 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Mn GLQ 699.0 Unf 0.0 638.0 1337.0 GasA ... Y SBrkr 1337 0 0 1337 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2003.0 RFn 2.0 531.0 TA TA Y 0 39 0 0 0 0 NaN NaN NaN 0 10 2007 WD Normal 185000.0
959 960 160 FV 24.0 2572 Pave NaN Reg Lvl AllPub FR2 Gtl Somerst Norm Norm Twnhs 2Story 7 5 1999 1999 Hip CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No ALQ 604.0 Unf 0.0 92.0 696.0 GasA ... Y SBrkr 696 720 0 1416 1.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Detchd 1999.0 Unf 2.0 484.0 TA TA Y 0 44 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 155000.0
960 961 20 RL 50.0 7207 Pave NaN IR1 Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 5 7 1958 2008 Gable CompShg Wd Sdng Plywood None 0.0 TA Gd CBlock TA TA Gd BLQ 696.0 Unf 0.0 162.0 858.0 GasA ... Y SBrkr 858 0 0 858 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 117 0 0 0 0 0 NaN NaN NaN 0 2 2010 WD Normal 116500.0
961 962 60 RL NaN 12227 Pave NaN IR1 Lvl AllPub Corner Gtl NWAmes PosN Norm 1Fam 2Story 6 7 1977 1995 Gable CompShg HdBoard HdBoard BrkFace 424.0 TA Gd CBlock Gd Gd No ALQ 896.0 Unf 0.0 434.0 1330.0 GasA ... Y SBrkr 1542 1330 0 2872 1.0 0.0 2 1 4 1 TA 11 Typ 1 TA Attchd 1977.0 Fin 2.0 619.0 TA TA Y 550 282 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 272000.0
962 963 160 RL 24.0 2308 Pave NaN Reg Lvl AllPub Corner Gtl NPkVill Norm Norm TwnhsE 2Story 6 6 1976 1976 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock Gd TA No ALQ 556.0 Unf 0.0 248.0 804.0 GasA ... Y SBrkr 804 744 0 1548 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Detchd 1976.0 Unf 2.0 440.0 TA TA Y 48 0 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 155000.0
963 964 20 RL 122.0 11923 Pave NaN IR1 Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 9 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA No Unf 0.0 Unf 0.0 1800.0 1800.0 GasA ... Y SBrkr 1800 0 0 1800 0.0 0.0 2 0 2 1 Ex 7 Typ 0 NaN Attchd 2007.0 Fin 2.0 702.0 TA TA Y 288 136 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 239000.0
964 965 60 RL 80.0 11316 Pave NaN Reg Lvl AllPub Corner Gtl Timber Norm Norm 1Fam 2Story 7 5 2002 2003 Gable CompShg VinylSd VinylSd BrkFace 44.0 Gd TA PConc Gd TA No GLQ 624.0 Unf 0.0 193.0 817.0 GasA ... Y SBrkr 824 1070 0 1894 1.0 0.0 2 1 4 1 Gd 8 Typ 1 Gd BuiltIn 2002.0 Fin 2.0 510.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 2 2010 WD Normal 214900.0
965 966 60 RL 65.0 10237 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert RRAn Norm 1Fam 2Story 6 5 2005 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 783.0 783.0 GasA ... Y SBrkr 783 701 0 1484 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2005.0 Fin 2.0 393.0 TA TA Y 0 72 0 0 0 0 NaN NaN NaN 0 7 2007 New Partial 178900.0
966 967 50 RL 130.0 9600 Pave NaN IR1 HLS AllPub Inside Gtl Crawfor Norm Norm 1Fam 1.5Fin 5 7 1940 1950 Gable CompShg MetalSd MetalSd None 0.0 Gd Gd BrkTil TA Fa No Rec 428.0 Unf 0.0 300.0 728.0 GasA ... Y SBrkr 976 332 0 1308 1.0 0.0 1 1 2 1 TA 7 Min2 2 TA Detchd 1940.0 Unf 1.0 256.0 TA TA Y 0 70 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 160000.0
967 968 20 RL NaN 7390 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1955 1955 Hip CompShg Wd Sdng Wd Sdng BrkFace 151.0 TA TA CBlock TA TA No ALQ 902.0 Unf 0.0 196.0 1098.0 GasA ... Y SBrkr 1098 0 0 1098 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1955.0 Unf 1.0 260.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 135000.0
968 969 50 RM 50.0 5925 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 3 6 1910 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 600.0 600.0 Grav ... N SBrkr 600 368 0 968 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN GdWo NaN 0 5 2009 WD Abnorml 37900.0
969 970 190 RL 75.0 10382 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 2fmCon SLvl 6 5 1958 1958 Hip CompShg HdBoard HdBoard BrkFace 105.0 TA Fa CBlock TA TA Gd ALQ 513.0 Unf 0.0 75.0 588.0 GasA ... Y SBrkr 1095 0 0 1095 1.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Attchd 1958.0 RFn 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2006 ConLD Normal 140000.0
970 971 50 RL 60.0 10800 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Fin 4 4 1949 1950 Gable CompShg AsbShng AsbShng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 720.0 720.0 GasA ... N FuseA 720 472 0 1192 0.0 0.0 1 1 4 1 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 12 2006 WD Abnorml 135000.0
971 972 160 RL 36.0 2268 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm Twnhs 2Story 7 5 2003 2004 Gable CompShg VinylSd Wd Shng Stone 106.0 Gd TA PConc Gd TA No GLQ 567.0 Unf 0.0 197.0 764.0 GasA ... Y SBrkr 764 862 0 1626 0.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN BuiltIn 2003.0 RFn 2.0 474.0 TA TA Y 0 27 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 173000.0
972 973 120 RL 55.0 7892 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm TwnhsE 1Story 6 5 1979 1979 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 918.0 918.0 GasA ... Y SBrkr 918 0 0 918 0.0 0.0 2 0 2 1 TA 5 Typ 1 TA Attchd 1979.0 Unf 1.0 264.0 TA TA Y 28 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 99500.0
973 974 20 FV 95.0 11639 Pave NaN Reg Lvl AllPub Corner Gtl Somerst Norm Norm 1Fam 1Story 7 5 2007 2008 Gable CompShg CemntBd CmentBd NaN NaN Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1428.0 1428.0 GasA ... Y SBrkr 1428 0 0 1428 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2007.0 Fin 2.0 480.0 TA TA Y 0 120 0 0 0 0 NaN NaN NaN 0 12 2008 New Partial 182000.0
974 975 70 RL 60.0 11414 Pave NaN IR1 Lvl AllPub Corner Gtl BrkSide RRAn Feedr 1Fam 2Story 7 8 1910 1993 Gable CompShg HdBoard HdBoard None 0.0 TA Gd BrkTil Gd TA No Unf 0.0 Unf 0.0 728.0 728.0 GasA ... N SBrkr 1136 883 0 2019 0.0 0.0 1 0 3 1 Gd 8 Typ 0 NaN Detchd 1997.0 Unf 2.0 532.0 TA TA Y 509 135 0 0 0 0 NaN GdPrv NaN 0 10 2009 WD Normal 167500.0
975 976 160 FV NaN 2651 Pave NaN Reg Lvl AllPub FR2 Gtl Somerst Norm Norm Twnhs 2Story 7 5 2000 2000 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No GLQ 641.0 Unf 0.0 32.0 673.0 GasA ... Y SBrkr 673 709 0 1382 1.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Detchd 2000.0 Unf 2.0 490.0 TA TA Y 153 50 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 165000.0
976 977 30 RL 51.0 5900 Pave NaN IR1 Bnk AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 4 7 1923 1958 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 440.0 440.0 GasA ... Y FuseA 869 0 0 869 0.0 0.0 1 0 2 1 Fa 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal 85500.0
977 978 120 FV 35.0 4274 Pave Pave IR1 Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 1Story 7 5 2006 2007 Gable CompShg VinylSd VinylSd NaN NaN Gd TA PConc Gd TA No GLQ 1106.0 Unf 0.0 135.0 1241.0 GasA ... Y SBrkr 1241 0 0 1241 1.0 0.0 1 1 1 1 Gd 4 Typ 0 NaN Attchd 2007.0 Fin 2.0 569.0 TA TA Y 0 116 0 0 0 0 NaN NaN NaN 0 11 2007 New Partial 199900.0
978 979 20 RL 68.0 9450 Pave NaN Reg Bnk AllPub Inside Mod Edwards Norm Norm 1Fam 1Story 4 5 1954 1954 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No LwQ 552.0 Unf 0.0 342.0 894.0 GasA ... Y SBrkr 894 0 0 894 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1999.0 Unf 2.0 400.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Abnorml 110000.0
979 980 20 RL 80.0 8816 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Feedr Norm 1Fam 1Story 5 6 1963 1963 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc TA TA No Rec 651.0 Unf 0.0 470.0 1121.0 GasA ... Y SBrkr 1121 0 0 1121 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1963.0 Unf 2.0 480.0 TA TA Y 0 80 0 0 0 0 NaN MnPrv NaN 0 6 2009 WD Normal 139000.0
980 981 85 RL NaN 12122 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam SFoyer 7 9 1961 2007 Gable CompShg CemntBd CmentBd Stone 210.0 Ex TA CBlock TA TA Av ALQ 867.0 Unf 0.0 77.0 944.0 GasA ... Y SBrkr 999 0 0 999 1.0 0.0 1 0 3 1 Ex 6 Typ 0 NaN Attchd 1961.0 RFn 2.0 588.0 TA TA Y 144 76 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 178400.0
981 982 60 RL 98.0 12203 Pave NaN IR1 Lvl AllPub Corner Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1998 1999 Hip CompShg VinylSd VinylSd BrkFace 975.0 Gd TA PConc Gd TA No GLQ 854.0 Unf 0.0 371.0 1225.0 GasA ... Y SBrkr 1276 1336 0 2612 1.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Attchd 1998.0 Fin 3.0 676.0 TA TA Y 250 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 336000.0
982 983 20 RL 43.0 3182 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm 1Fam 1Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd BrkFace 16.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1266.0 1266.0 GasA ... Y SBrkr 1266 0 0 1266 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2007.0 Fin 2.0 388.0 TA TA Y 100 16 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal 159895.0
983 984 60 RL NaN 11250 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 2Story 8 5 2002 2002 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA Mn Unf 0.0 Unf 0.0 1128.0 1128.0 GasA ... Y SBrkr 1149 1141 0 2290 0.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd Attchd 2002.0 Unf 2.0 779.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 255900.0
984 985 90 RL 75.0 10125 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm Duplex 1.5Fin 5 5 1977 1977 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1302 432 0 1734 0.0 0.0 2 0 4 2 Gd 8 Typ 0 NaN Attchd 1977.0 Unf 2.0 539.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2009 COD Normal 126000.0
985 986 190 RL 68.0 10880 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 2fmCon 1Story 5 5 1950 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No ALQ 1040.0 Unf 0.0 124.0 1164.0 GasW ... N SBrkr 1164 0 0 1164 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1950.0 Unf 1.0 240.0 TA TA Y 0 48 0 0 0 0 NaN NaN NaN 0 8 2008 ConLD Normal 125000.0
986 987 50 RM 59.0 5310 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Feedr Norm 1Fam 1.5Fin 6 8 1910 2003 Hip CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA Fa No Unf 0.0 Unf 0.0 485.0 485.0 GasA ... Y SBrkr 1001 634 0 1635 0.0 0.0 1 0 2 1 Gd 5 Typ 0 NaN Attchd 1950.0 Unf 1.0 255.0 Fa TA Y 394 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 117000.0
987 988 20 RL 83.0 10159 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2009 2010 Hip CompShg VinylSd VinylSd Stone 450.0 Ex TA PConc Ex TA Av GLQ 1646.0 Unf 0.0 284.0 1930.0 GasA ... Y SBrkr 1940 0 0 1940 1.0 0.0 2 1 3 1 Ex 8 Typ 1 Gd Attchd 2010.0 Fin 3.0 606.0 TA TA Y 168 95 0 0 0 0 NaN NaN NaN 0 4 2010 New Partial 395192.0
988 989 60 RL NaN 12046 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 6 6 1976 1976 Gable CompShg Plywood Plywood BrkFace 298.0 TA TA CBlock TA TA No LwQ 156.0 Unf 0.0 692.0 848.0 GasA ... Y SBrkr 1118 912 0 2030 0.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Attchd 1976.0 Fin 2.0 551.0 TA TA Y 0 224 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 195000.0
989 990 60 FV 65.0 8125 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd Gd No Unf 0.0 Unf 0.0 770.0 770.0 GasA ... Y SBrkr 778 798 0 1576 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2006.0 RFn 2.0 614.0 TA TA Y 0 50 0 0 0 0 NaN NaN NaN 0 8 2006 New Partial 197000.0
990 991 60 RL 82.0 9452 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1997 1998 Gable CompShg VinylSd VinylSd BrkFace 423.0 Gd TA PConc Gd TA No GLQ 1074.0 Unf 0.0 322.0 1396.0 GasA ... Y SBrkr 1407 985 0 2392 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1997.0 Fin 3.0 870.0 TA TA Y 0 70 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 348000.0
991 992 70 RM 121.0 17671 Pave Grvl Reg Lvl AllPub Corner Gtl OldTown Artery Norm 1Fam 2Story 8 9 1882 1986 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd Gd BrkTil TA TA No BLQ 216.0 Unf 0.0 700.0 916.0 GasA ... Y SBrkr 916 826 0 1742 0.0 0.0 1 1 4 1 Gd 8 Typ 1 Gd Attchd 1925.0 Unf 2.0 424.0 TA TA P 0 169 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal 168000.0
992 993 60 RL 80.0 9760 Pave NaN Reg Lvl AllPub Inside Mod NAmes Norm Norm 1Fam 2Story 6 8 1964 1993 Hip CompShg Wd Sdng Wd Sdng BrkFace 340.0 TA TA CBlock TA TA Gd BLQ 536.0 Rec 117.0 169.0 822.0 GasA ... Y SBrkr 1020 831 0 1851 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Fa Attchd 1964.0 RFn 2.0 440.0 TA TA Y 239 42 0 0 0 0 NaN MnWw NaN 0 7 2007 WD Normal 187000.0
993 994 60 RL 68.0 8846 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 6 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 750.0 750.0 GasA ... Y SBrkr 750 750 0 1500 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2005.0 RFn 2.0 564.0 TA TA Y 0 35 0 0 0 0 NaN NaN NaN 0 8 2006 New Partial 173900.0
994 995 20 RL 96.0 12456 Pave NaN Reg Lvl AllPub FR2 Gtl NridgHt Norm Norm 1Fam 1Story 10 5 2006 2007 Hip CompShg CemntBd CmentBd Stone 230.0 Ex TA PConc Ex TA Gd GLQ 1172.0 Unf 0.0 528.0 1700.0 GasA ... Y SBrkr 1718 0 0 1718 1.0 0.0 2 0 3 1 Ex 7 Typ 1 Gd Attchd 2008.0 Fin 3.0 786.0 TA TA Y 216 48 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 337500.0
995 996 50 RL 51.0 4712 Pave NaN IR1 Lvl AllPub Inside Mod BrkSide Feedr Norm 1Fam 1.5Fin 4 7 1946 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No ALQ 384.0 Unf 0.0 363.0 747.0 GasA ... Y SBrkr 774 456 0 1230 1.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Detchd 1946.0 Unf 1.0 305.0 TA TA Y 0 57 0 0 63 0 NaN MnPrv NaN 0 8 2006 WD Abnorml 121600.0
996 997 20 RL NaN 10659 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1961 1961 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 915.0 Unf 0.0 135.0 1050.0 GasA ... Y SBrkr 1050 0 0 1050 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1961.0 Unf 1.0 368.0 TA TA Y 0 319 0 0 0 0 NaN NaN NaN 0 1 2006 COD Normal 136500.0
997 998 20 RL NaN 11717 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes PosA Norm 1Fam 1Story 6 6 1970 1970 Hip CompShg HdBoard HdBoard BrkFace 571.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1442.0 1442.0 GasA ... Y SBrkr 1442 0 0 1442 0.0 0.0 2 0 2 1 TA 6 Typ 1 TA Attchd 1970.0 RFn 2.0 615.0 TA TA Y 371 0 0 0 0 0 NaN NaN NaN 0 2 2009 WD Normal 185000.0
998 999 30 RM 60.0 9786 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 3 4 1922 1950 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA Fa No Unf 0.0 Unf 0.0 1007.0 1007.0 GasA ... N SBrkr 1077 0 0 1077 0.0 0.0 1 0 3 1 TA 6 Typ 1 Gd Detchd 1922.0 Unf 1.0 210.0 TA Fa P 0 100 48 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 91000.0
999 1000 20 RL 64.0 6762 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd Stone 24.0 Gd TA PConc Gd TA Av GLQ 686.0 Unf 0.0 501.0 1187.0 GasA ... Y SBrkr 1208 0 0 1208 1.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 2006.0 RFn 2.0 632.0 TA TA Y 105 61 0 0 0 0 NaN NaN NaN 0 2 2010 WD Normal 206000.0
1000 1001 20 RL 74.0 10206 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 1Story 3 3 1952 1952 Flat Tar&Grv BrkComm Brk Cmn None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasW ... N FuseF 944 0 0 944 0.0 0.0 1 0 2 1 Fa 4 Min1 0 NaN Detchd 1956.0 Unf 2.0 528.0 TA Fa Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 82000.0
1001 1002 30 RL 60.0 5400 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1Story 5 6 1920 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Fa TA No Unf 0.0 Unf 0.0 691.0 691.0 GasA ... Y FuseA 691 0 0 691 0.0 0.0 1 0 2 1 Ex 4 Typ 0 NaN Detchd 1920.0 Unf 1.0 216.0 Fa TA N 0 20 94 0 0 0 NaN NaN NaN 0 1 2007 WD Abnorml 86000.0
1002 1003 20 RL 75.0 11957 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst RRAn Norm 1Fam 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd BrkFace 53.0 Gd TA PConc Gd TA No GLQ 24.0 Unf 0.0 1550.0 1574.0 GasA ... Y SBrkr 1574 0 0 1574 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 RFn 3.0 824.0 TA TA Y 144 104 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 232000.0
1003 1004 90 RL NaN 11500 Pave NaN IR1 Lvl AllPub Corner Gtl NWAmes Feedr RRAn Duplex 1Story 5 6 1976 1976 Gable CompShg VinylSd VinylSd BrkFace 164.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1680.0 1680.0 GasA ... Y SBrkr 1680 0 0 1680 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Detchd 1976.0 Unf 2.0 528.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 136905.0
1004 1005 120 RL 43.0 3182 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 16.0 Gd TA PConc Gd TA No GLQ 16.0 Unf 0.0 1330.0 1346.0 GasA ... Y SBrkr 1504 0 0 1504 0.0 0.0 2 0 1 1 Gd 7 Typ 1 Gd Attchd 2005.0 Fin 2.0 457.0 TA TA Y 156 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 181000.0
1005 1006 80 RL 65.0 8385 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam SLvl 5 8 1977 1977 Gable CompShg HdBoard HdBoard BrkFace 220.0 Gd TA CBlock Gd Gd Av GLQ 595.0 Unf 0.0 390.0 985.0 GasA ... Y SBrkr 985 0 0 985 0.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Attchd 1977.0 Unf 1.0 328.0 TA TA Y 210 0 0 0 0 0 NaN NaN NaN 0 11 2008 WD Normal 149900.0
1006 1007 20 RL NaN 12155 Pave NaN IR3 Lvl AllPub Inside Gtl NAmes PosN Norm 1Fam 1Story 6 3 1970 1970 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA No LwQ 1237.0 Unf 0.0 420.0 1657.0 GasA ... Y SBrkr 1657 0 0 1657 0.0 1.0 2 0 3 1 TA 7 Typ 1 TA Attchd 1970.0 Unf 2.0 484.0 TA TA Y 0 0 0 0 147 0 NaN NaN NaN 0 3 2007 WD Normal 163500.0
1007 1008 160 RM 21.0 2217 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 2Story 4 4 1970 1970 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock TA TA No BLQ 273.0 LwQ 273.0 0.0 546.0 GasA ... Y SBrkr 546 546 0 1092 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1970.0 RFn 1.0 286.0 TA TA Y 238 0 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal 88000.0
1008 1009 20 RL 43.0 12118 Pave NaN IR1 Lvl AllPub CulDSac Gtl Mitchel Norm Norm 1Fam 1Story 7 5 2004 2005 Hip CompShg VinylSd VinylSd Stone 108.0 Gd TA PConc Ex TA Mn Unf 0.0 Unf 0.0 1710.0 1710.0 GasA ... Y SBrkr 1710 0 0 1710 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2004.0 Fin 2.0 550.0 TA TA Y 100 48 0 0 180 0 NaN NaN NaN 0 4 2009 WD Normal 240000.0
1009 1010 50 RL 60.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Norm Norm 1Fam 1.5Fin 5 5 1926 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Fa BrkTil TA TA No Unf 0.0 Unf 0.0 1008.0 1008.0 GasA ... Y SBrkr 1008 0 514 1522 0.0 0.0 2 0 4 1 TA 7 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN P 0 0 138 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 102000.0
1010 1011 50 RL 115.0 21286 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1.5Fin 5 5 1948 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 720.0 720.0 GasA ... Y SBrkr 720 551 0 1271 0.0 0.0 2 0 4 1 TA 7 Typ 1 Gd Attchd 1948.0 Unf 1.0 312.0 TA TA Y 0 0 108 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 135000.0
1011 1012 90 RL 75.0 9825 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm Duplex 1Story 5 5 1965 1965 Hip CompShg AsphShn AsphShn None 0.0 TA TA CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N SBrkr 1664 0 0 1664 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 100000.0
1012 1013 70 RL 55.0 10592 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 6 7 1923 1996 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA Gd PConc TA Fa No Unf 0.0 Unf 0.0 602.0 602.0 GasA ... Y SBrkr 900 602 0 1502 0.0 0.0 1 1 3 1 Gd 7 Typ 2 TA Detchd 1923.0 Unf 1.0 180.0 TA TA Y 96 0 112 0 53 0 NaN NaN NaN 0 8 2007 WD Normal 165000.0
1013 1014 30 RM 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 4 1910 2006 Hip CompShg MetalSd Stucco None 0.0 TA TA BrkTil TA TA No ALQ 247.0 Rec 465.0 310.0 1022.0 GasW ... N SBrkr 1022 0 0 1022 1.0 0.0 1 0 2 1 TA 4 Maj2 0 NaN Detchd 1956.0 Unf 1.0 280.0 TA TA Y 0 30 226 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 85000.0
1014 1015 20 RL 60.0 11664 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Artery Norm 1Fam 1Story 6 5 1948 1950 Gable CompShg MetalSd MetalSd BrkFace 206.0 TA TA CBlock TA Fa No BLQ 336.0 Unf 0.0 746.0 1082.0 GasA ... Y SBrkr 1082 0 0 1082 0.0 0.0 1 0 2 1 TA 5 Typ 1 Gd Detchd 1948.0 Unf 1.0 240.0 TA TA Y 0 130 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal 119200.0
1015 1016 60 RL 70.0 8400 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 8 6 2001 2001 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 643.0 Unf 0.0 167.0 810.0 GasA ... Y SBrkr 810 855 0 1665 1.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2001.0 Fin 2.0 528.0 TA TA Y 0 45 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal 227000.0
1016 1017 20 RL 73.0 11883 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 1996 1996 Hip CompShg VinylSd VinylSd BrkFace 196.0 Gd TA PConc Gd TA Gd GLQ 690.0 Unf 0.0 814.0 1504.0 GasA ... Y SBrkr 1504 0 0 1504 1.0 0.0 2 0 3 1 Gd 6 Typ 1 TA Attchd 1996.0 Fin 2.0 478.0 TA TA Y 115 66 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 203000.0
1017 1018 120 RL NaN 5814 Pave NaN IR1 Lvl AllPub CulDSac Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 1984 1984 Gable CompShg HdBoard HdBoard None 0.0 Gd TA CBlock Gd TA Av GLQ 1036.0 Unf 0.0 184.0 1220.0 GasA ... Y SBrkr 1360 0 0 1360 1.0 0.0 1 0 1 1 Gd 4 Typ 1 Ex Attchd 1984.0 RFn 2.0 565.0 TA TA Y 63 0 0 0 0 0 NaN NaN NaN 0 8 2009 COD Abnorml 187500.0
1018 1019 80 RL NaN 10784 Pave NaN IR1 Lvl AllPub FR2 Gtl Gilbert Norm Norm 1Fam SLvl 7 5 1991 1992 Gable CompShg HdBoard HdBoard BrkFace 76.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 384.0 384.0 GasA ... Y SBrkr 802 670 0 1472 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1991.0 RFn 2.0 402.0 TA TA Y 164 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 160000.0
1019 1020 120 RL 43.0 3013 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd BrkFace 145.0 Gd TA PConc Gd TA Gd GLQ 16.0 Unf 0.0 1346.0 1362.0 GasA ... Y SBrkr 1506 0 0 1506 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2005.0 Fin 2.0 440.0 TA TA Y 142 20 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 213490.0
1020 1021 20 RL 60.0 7024 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No GLQ 1024.0 Unf 0.0 108.0 1132.0 GasA ... Y SBrkr 1132 0 0 1132 1.0 0.0 1 1 2 1 Gd 5 Typ 0 NaN Attchd 2005.0 Fin 2.0 451.0 TA TA Y 252 64 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 176000.0
1021 1022 20 RL 64.0 7406 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd Stone 84.0 Gd TA PConc Gd TA Av GLQ 684.0 Unf 0.0 515.0 1199.0 GasA ... Y SBrkr 1220 0 0 1220 1.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 2006.0 RFn 2.0 632.0 TA TA Y 105 54 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial 194000.0
1022 1023 50 RM 52.0 9439 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 5 1930 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No LwQ 324.0 Unf 0.0 588.0 912.0 GasA ... Y FuseA 912 336 0 1248 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1957.0 Unf 1.0 160.0 Fa Fa Y 0 0 192 0 0 0 NaN NaN NaN 0 3 2007 WD Normal 87000.0
1023 1024 120 RL 43.0 3182 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 14.0 Gd TA PConc Gd Gd No GLQ 16.0 Unf 0.0 1330.0 1346.0 GasA ... Y SBrkr 1504 0 0 1504 0.0 0.0 2 0 2 1 Gd 7 Typ 1 Gd Attchd 2005.0 Fin 2.0 437.0 TA TA Y 156 20 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 191000.0
1024 1025 20 RL NaN 15498 Pave NaN IR1 Lvl AllPub Corner Gtl Timber Norm Norm 1Fam 1Story 8 6 1976 1976 Hip WdShake Stone HdBoard None 0.0 Gd TA CBlock Gd TA Av ALQ 1165.0 LwQ 400.0 0.0 1565.0 GasA ... Y SBrkr 2898 0 0 2898 1.0 0.0 2 0 2 1 Gd 10 Typ 1 Gd Attchd 1976.0 Fin 2.0 665.0 TA TA Y 0 72 174 0 0 0 NaN NaN NaN 0 5 2008 COD Abnorml 287000.0
1025 1026 20 RL 70.0 7700 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 5 5 1972 1972 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No LwQ 138.0 Rec 468.0 276.0 882.0 GasA ... Y SBrkr 882 0 0 882 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1980.0 Unf 2.0 461.0 TA TA Y 96 0 0 0 0 0 NaN MnPrv NaN 0 3 2007 WD Normal 112500.0
1026 1027 20 RL 73.0 9300 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam 1Story 5 5 1960 1960 Gable CompShg MetalSd HdBoard BrkFace 324.0 TA TA CBlock TA TA No Rec 697.0 Unf 0.0 571.0 1268.0 GasA ... Y SBrkr 1264 0 0 1264 1.0 0.0 1 0 3 1 TA 6 Typ 2 Gd Attchd 1960.0 Unf 2.0 461.0 TA TA Y 0 0 0 0 143 0 NaN NaN NaN 0 4 2010 WD Normal 167500.0
1027 1028 20 RL 71.0 9520 Pave NaN IR1 HLS AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2007 2008 Gable CompShg VinylSd VinylSd Stone 338.0 Gd TA PConc Gd TA Gd GLQ 1513.0 Unf 0.0 125.0 1638.0 GasA ... Y SBrkr 1646 0 0 1646 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2008.0 RFn 3.0 800.0 TA TA Y 192 44 0 0 0 0 NaN NaN NaN 0 4 2008 New Partial 293077.0
1028 1029 50 RL 79.0 9492 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Artery Norm 1Fam 1.5Fin 5 5 1941 1950 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA TA No Rec 368.0 BLQ 41.0 359.0 768.0 GasA ... Y SBrkr 968 408 0 1376 1.0 0.0 1 0 3 1 TA 6 Typ 1 Gd Attchd 1941.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal 105000.0
1029 1030 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 7 1972 1972 Gable CompShg HdBoard HdBoard BrkFace 281.0 TA TA CBlock TA TA No BLQ 317.0 Unf 0.0 355.0 672.0 GasA ... Y SBrkr 672 546 0 1218 0.0 1.0 1 1 3 1 TA 7 Typ 0 NaN Detchd 1972.0 Unf 1.0 264.0 TA TA Y 0 28 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 118000.0
1030 1031 190 RH NaN 7082 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Norm Norm 2fmCon 2Story 5 8 1916 1995 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc TA TA Mn Unf 0.0 Unf 0.0 686.0 686.0 GasA ... Y SBrkr 948 980 0 1928 0.0 0.0 2 0 5 2 TA 10 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 228 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 160000.0
1031 1032 75 RL 102.0 15863 Pave NaN Reg Lvl AllPub Corner Gtl SWISU Norm Norm 1Fam 2.5Fin 7 3 1920 1970 Gable CompShg Wd Sdng Plywood None 0.0 TA TA BrkTil TA TA No GLQ 523.0 Unf 0.0 301.0 824.0 GasA ... Y SBrkr 1687 998 397 3082 1.0 0.0 2 1 5 1 TA 12 Typ 2 TA Basment 1970.0 Fin 2.0 672.0 TA TA Y 136 63 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal 197000.0
1032 1033 60 RL NaN 14541 Pave NaN IR1 Lvl AllPub Corner Gtl NoRidge Norm Norm 1Fam 2Story 8 7 1993 1993 Gable CompShg MetalSd MetalSd None 0.0 Gd Gd PConc Gd Gd No GLQ 1012.0 Unf 0.0 326.0 1338.0 GasA ... Y SBrkr 1352 1168 0 2520 1.0 0.0 2 1 5 1 Gd 10 Typ 1 TA Attchd 1993.0 RFn 3.0 796.0 TA TA Y 209 55 0 0 0 0 NaN NaN NaN 0 11 2006 WD Abnorml 310000.0
1033 1034 20 RL NaN 8125 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd Stone 295.0 Gd TA PConc Gd TA No GLQ 986.0 Unf 0.0 668.0 1654.0 GasA ... Y SBrkr 1654 0 0 1654 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2002.0 Unf 3.0 900.0 TA TA Y 0 136 0 0 0 0 NaN NaN NaN 0 2 2006 WD Normal 230000.0
1034 1035 30 RL 50.0 6305 Pave NaN Reg Bnk AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 5 7 1938 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Gd PConc Fa Fa No Unf 0.0 Unf 0.0 920.0 920.0 GasA ... Y SBrkr 954 0 0 954 0.0 0.0 1 0 2 1 Fa 5 Typ 1 Gd Basment 1938.0 Unf 1.0 240.0 Fa TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 6 2007 WD Normal 119750.0
1035 1036 20 RL NaN 11500 Pave NaN IR1 Lvl AllPub CulDSac Gtl Edwards Norm Norm 1Fam 1Story 4 3 1957 1957 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N SBrkr 845 0 0 845 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1957.0 Unf 1.0 290.0 TA TA N 186 0 0 0 0 0 NaN NaN NaN 0 1 2009 WD Normal 84000.0
1036 1037 20 RL 89.0 12898 Pave NaN IR1 HLS AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 9 5 2007 2008 Hip CompShg VinylSd VinylSd Stone 70.0 Gd TA PConc Ex TA Gd GLQ 1022.0 Unf 0.0 598.0 1620.0 GasA ... Y SBrkr 1620 0 0 1620 1.0 0.0 2 0 2 1 Ex 6 Typ 1 Ex Attchd 2008.0 Fin 3.0 912.0 TA TA Y 228 0 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal 315500.0
1037 1038 60 RL NaN 9240 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 8 5 2001 2002 Gable CompShg VinylSd VinylSd BrkFace 396.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1055.0 1055.0 GasA ... Y SBrkr 1055 1208 0 2263 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA BuiltIn 2001.0 Fin 2.0 905.0 TA TA Y 0 45 0 0 189 0 NaN NaN NaN 0 9 2008 WD Normal 287000.0
1038 1039 160 RM 21.0 1533 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs 2Story 4 6 1970 2008 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 546.0 546.0 GasA ... Y SBrkr 798 546 0 1344 0.0 0.0 1 1 3 1 TA 6 Typ 1 TA NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 97000.0
1039 1040 180 RM 21.0 1477 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE SFoyer 4 4 1970 1970 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock Gd TA Av GLQ 509.0 Unf 0.0 121.0 630.0 GasA ... Y SBrkr 630 0 0 630 1.0 0.0 1 0 1 1 TA 3 Typ 0 NaN Attchd 1970.0 Unf 1.0 286.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal 80000.0
1040 1041 20 RL 88.0 13125 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Norm Norm 1Fam 1Story 5 4 1957 2000 Gable CompShg Wd Sdng Wd Sdng BrkCmn 67.0 TA TA CBlock TA TA No Rec 168.0 BLQ 682.0 284.0 1134.0 GasA ... Y SBrkr 1803 0 0 1803 1.0 0.0 2 0 3 1 TA 8 Maj1 1 TA Attchd 1957.0 RFn 2.0 484.0 TA TA Y 0 0 0 0 0 0 NaN GdPrv NaN 0 1 2006 WD Normal 155000.0
1041 1042 60 RL NaN 9130 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Feedr Norm 1Fam 2Story 6 8 1966 2000 Hip CompShg HdBoard HdBoard BrkFace 252.0 TA TA CBlock TA TA No GLQ 400.0 Rec 64.0 336.0 800.0 GasA ... Y SBrkr 800 832 0 1632 0.0 1.0 1 1 4 1 Gd 7 Typ 0 NaN Attchd 1966.0 Unf 2.0 484.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 173000.0
1042 1043 120 RL 34.0 5381 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm Twnhs 1Story 6 5 2005 2005 Gable CompShg VinylSd VinylSd Stone 135.0 Gd TA PConc Gd TA Av ALQ 900.0 Unf 0.0 406.0 1306.0 GasA ... Y SBrkr 1306 0 0 1306 1.0 0.0 2 0 1 1 Gd 5 Typ 1 Gd Attchd 2005.0 RFn 2.0 624.0 TA TA Y 170 63 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal 196000.0
1043 1044 60 RL 86.0 11839 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 7 5 1990 1990 Hip CompShg HdBoard HdBoard BrkFace 99.0 TA TA PConc Gd TA No GLQ 1085.0 Unf 0.0 390.0 1475.0 GasA ... Y SBrkr 1532 797 0 2329 1.0 0.0 2 1 4 1 Gd 10 Typ 1 Ex Attchd 1990.0 Unf 2.0 514.0 TA TA Y 192 121 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 262280.0
1044 1045 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes PosN Norm 1Fam 1Story 8 5 1981 1981 Hip WdShngl BrkFace BrkFace None 0.0 Gd TA PConc Gd TA No ALQ 1104.0 Unf 0.0 1420.0 2524.0 GasA ... Y SBrkr 2524 0 0 2524 1.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd Attchd 1981.0 Fin 2.0 542.0 TA TA Y 474 120 0 0 0 0 NaN MnPrv NaN 0 7 2009 WD Normal 278000.0
1045 1046 20 RL NaN 13680 Pave NaN IR1 Lvl AllPub CulDSac Gtl Edwards Norm Norm 1Fam 1Story 3 5 1955 1955 Hip CompShg BrkFace Wd Sdng None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y FuseA 1733 0 0 1733 0.0 0.0 2 0 4 1 TA 8 Min2 1 Gd Attchd 1955.0 Unf 2.0 452.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 139600.0
1046 1047 60 RL 85.0 16056 Pave NaN IR1 Lvl AllPub Inside Gtl StoneBr Norm Norm 1Fam 2Story 9 5 2005 2006 Hip CompShg CemntBd CmentBd Stone 208.0 Gd TA PConc Ex TA Av GLQ 240.0 Unf 0.0 1752.0 1992.0 GasA ... Y SBrkr 1992 876 0 2868 0.0 0.0 3 1 4 1 Ex 11 Typ 1 Gd BuiltIn 2005.0 Fin 3.0 716.0 TA TA Y 214 108 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial 556581.0
1047 1048 20 RL 57.0 9245 Pave NaN IR2 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 5 1994 1995 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No GLQ 686.0 Unf 0.0 304.0 990.0 GasA ... Y SBrkr 990 0 0 990 0.0 1.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1996.0 Unf 2.0 672.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal 145000.0
1048 1049 20 RL 100.0 21750 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 4 1960 2006 Hip CompShg HdBoard HdBoard BrkFace 75.0 TA Fa Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1771 0 0 1771 0.0 0.0 1 0 3 1 TA 9 Min1 1 TA Attchd 1960.0 Unf 2.0 336.0 TA TA Y 0 0 0 0 0 0 NaN GdPrv NaN 0 11 2009 WD Normal 115000.0
1049 1050 20 RL 60.0 11100 Pave NaN Reg Low AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 7 1946 2006 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 930 0 0 930 0.0 0.0 1 0 2 1 Gd 6 Typ 0 NaN Detchd 1946.0 Unf 1.0 308.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Abnorml 84900.0
1050 1051 20 RL 73.0 8993 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 1Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1302.0 1302.0 GasA ... Y SBrkr 1302 0 0 1302 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2007.0 Fin 2.0 436.0 TA TA Y 0 22 0 0 0 0 NaN NaN NaN 0 8 2007 New Partial 176485.0
1051 1052 20 RL 103.0 11175 Pave NaN IR1 Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1316.0 1316.0 GasA ... Y SBrkr 1316 0 0 1316 0.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2007.0 Fin 2.0 440.0 TA TA Y 0 20 0 0 0 0 NaN NaN NaN 0 10 2007 New Partial 200141.0
1052 1053 60 RL 100.0 9500 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Artery Norm 1Fam 2Story 6 6 1964 1978 Gable CompShg VinylSd VinylSd BrkCmn 272.0 TA TA CBlock TA TA No Rec 442.0 Unf 0.0 374.0 816.0 GasA ... Y SBrkr 1127 850 0 1977 0.0 1.0 1 1 4 1 TA 9 Typ 1 TA Attchd 1964.0 RFn 2.0 540.0 TA TA Y 0 52 0 0 0 0 NaN GdPrv NaN 0 6 2007 WD Normal 165000.0
1053 1054 20 RL 68.0 8562 Pave NaN Reg Lvl AllPub Inside Mod Edwards Norm Norm 1Fam 1Story 5 6 1957 2002 Hip CompShg HdBoard HdBoard Stone 145.0 TA TA CBlock TA TA Av Rec 383.0 Unf 0.0 833.0 1216.0 GasA ... Y FuseA 1526 0 0 1526 0.0 0.0 1 0 4 1 TA 7 Min2 1 Gd Basment 1957.0 Unf 1.0 364.0 TA TA Y 116 78 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 144500.0
1054 1055 60 RL 90.0 11367 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 2Story 8 5 2002 2002 Gable CompShg VinylSd VinylSd BrkFace 210.0 Gd TA PConc Gd TA Mn GLQ 932.0 Unf 0.0 133.0 1065.0 GasA ... Y SBrkr 1091 898 0 1989 1.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2002.0 Fin 2.0 586.0 TA TA Y 199 60 0 0 0 0 NaN NaN NaN 0 11 2006 WD Normal 255000.0
1055 1056 20 RL 104.0 11361 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 5 1976 1976 Gable CompShg Plywood Plywood BrkFace 160.0 TA TA CBlock Gd TA No ALQ 644.0 Unf 0.0 549.0 1193.0 GasA ... Y SBrkr 1523 0 0 1523 0.0 1.0 2 0 3 1 TA 7 Typ 1 TA Attchd 1976.0 Fin 2.0 478.0 TA TA Y 0 0 0 0 189 0 NaN MnPrv NaN 0 5 2008 COD Abnorml 180000.0
1056 1057 120 RL 43.0 7052 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd Stone 240.0 Gd TA PConc Gd TA Av GLQ 659.0 Unf 0.0 705.0 1364.0 GasA ... Y SBrkr 1364 0 0 1364 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2005.0 RFn 2.0 484.0 TA TA Y 192 36 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 185850.0
1057 1058 60 RL NaN 29959 Pave NaN IR2 Lvl AllPub FR2 Gtl NoRidge Norm Norm 1Fam 2Story 7 6 1994 1994 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA No GLQ 595.0 Unf 0.0 378.0 973.0 GasA ... Y SBrkr 979 871 0 1850 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd BuiltIn 1994.0 Fin 2.0 467.0 TA TA Y 168 98 0 0 0 0 NaN NaN NaN 0 1 2009 WD Normal 248000.0
1058 1059 60 RL 96.0 11308 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2008 2008 Gable CompShg VinylSd VinylSd Stone 154.0 Ex TA PConc Ex TA Av GLQ 936.0 Unf 0.0 168.0 1104.0 GasA ... Y SBrkr 1130 1054 0 2184 1.0 0.0 2 1 3 1 Ex 10 Typ 1 Gd Attchd 2008.0 Fin 3.0 836.0 TA TA Y 0 102 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 335000.0
1059 1060 50 RL NaN 11275 Pave NaN IR1 HLS AllPub Corner Mod Crawfor Norm Norm 1Fam 1.5Fin 6 7 1932 1950 Gable CompShg MetalSd MetalSd BrkFace 480.0 TA TA CBlock TA TA Mn Rec 297.0 LwQ 557.0 0.0 854.0 GasA ... Y SBrkr 1096 895 0 1991 0.0 0.0 1 1 3 1 TA 7 Typ 1 Gd Detchd 1977.0 Unf 2.0 432.0 TA Fa Y 0 0 19 0 0 0 NaN NaN NaN 0 3 2007 WD Normal 220000.0
1060 1061 120 RL 41.0 4920 Pave NaN Reg Lvl AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 2001 2001 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA Mn GLQ 616.0 Unf 0.0 722.0 1338.0 GasA ... Y SBrkr 1338 0 0 1338 1.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 2001.0 Fin 2.0 582.0 TA TA Y 0 0 170 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 213500.0
1061 1062 30 C (all) 120.0 18000 Grvl NaN Reg Low AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 3 4 1935 1950 Gable CompShg MetalSd MetalSd None 0.0 Fa TA CBlock TA TA No Unf 0.0 Unf 0.0 894.0 894.0 GasA ... Y SBrkr 894 0 0 894 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1994.0 RFn 3.0 1248.0 TA TA Y 0 20 0 0 0 0 NaN NaN Shed 560 8 2008 ConLD Normal 81000.0
1062 1063 190 RM 85.0 13600 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 2fmCon 2Story 5 5 1900 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 662.0 662.0 GasA ... N SBrkr 1422 915 0 2337 0.0 0.0 2 0 5 2 TA 10 Min2 0 NaN Detchd 1945.0 Unf 2.0 560.0 TA TA Y 0 57 0 0 0 0 NaN NaN NaN 0 9 2007 WD Normal 90000.0
1063 1064 30 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1Story 6 6 1925 1980 Gable CompShg MetalSd MetalSd None 0.0 TA Gd BrkTil TA TA No BLQ 397.0 Unf 0.0 706.0 1103.0 GasA ... Y SBrkr 1103 0 0 1103 0.0 0.0 1 0 2 1 Gd 5 Typ 1 Gd Detchd 1976.0 Unf 2.0 440.0 TA TA Y 166 120 0 0 0 0 NaN MnPrv NaN 0 7 2006 WD Normal 110500.0
1064 1065 20 RL NaN 11000 Pave NaN IR1 Lvl AllPub CulDSac Gtl NAmes Norm Norm 1Fam 1Story 5 6 1966 1966 Gable CompShg Plywood Plywood BrkFace 200.0 TA TA CBlock TA TA Mn BLQ 740.0 Rec 230.0 184.0 1154.0 GasA ... Y SBrkr 1154 0 0 1154 0.0 0.0 1 1 3 1 TA 6 Typ 1 Po Attchd 1966.0 RFn 2.0 480.0 TA TA Y 0 58 0 0 0 0 NaN MnPrv NaN 0 11 2009 WD Normal 154000.0
1065 1066 60 RL 80.0 14000 Pave NaN Reg Lvl AllPub Inside Mod ClearCr Norm Norm 1Fam 2Story 7 5 1996 1997 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd TA PConc Ex TA Gd GLQ 1201.0 Unf 0.0 105.0 1306.0 GasA ... Y SBrkr 1306 954 0 2260 1.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1996.0 RFn 2.0 533.0 TA TA Y 296 44 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 328000.0
1066 1067 60 RL 59.0 7837 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 7 1993 1994 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 799.0 799.0 GasA ... Y SBrkr 799 772 0 1571 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1993.0 RFn 2.0 380.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 178000.0
1067 1068 60 RL 80.0 9760 Pave NaN Reg Lvl AllPub Inside Mod NAmes Norm Norm 1Fam 2Story 6 6 1964 1964 Gable CompShg HdBoard HdBoard BrkFace 360.0 TA TA CBlock TA TA Gd GLQ 674.0 LwQ 106.0 0.0 780.0 GasA ... Y SBrkr 798 813 0 1611 1.0 0.0 1 1 4 1 TA 7 Typ 0 NaN Attchd 1964.0 RFn 2.0 442.0 TA TA Y 328 128 0 0 189 0 NaN NaN NaN 0 6 2008 WD Normal 167900.0
1068 1069 160 RM 42.0 3964 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 2Story 6 4 1973 1973 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock Gd TA No ALQ 837.0 Unf 0.0 105.0 942.0 GasA ... Y SBrkr 1291 1230 0 2521 1.0 0.0 2 1 5 1 TA 10 Maj1 1 Gd Attchd 1973.0 Fin 2.0 576.0 TA TA Y 728 20 0 0 0 0 NaN GdPrv NaN 0 6 2006 WD Normal 151400.0
1069 1070 45 RL 60.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Unf 5 7 1949 2003 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No ALQ 220.0 Unf 0.0 625.0 845.0 GasA ... Y SBrkr 893 0 0 893 0.0 1.0 1 0 2 1 Gd 4 Typ 0 NaN Detchd 1985.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 135000.0
1070 1071 20 RL 72.0 10152 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1956 1956 Hip CompShg MetalSd MetalSd BrkFace 120.0 TA TA CBlock TA TA No BLQ 586.0 Unf 0.0 462.0 1048.0 GasA ... Y SBrkr 1048 0 0 1048 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1956.0 Unf 1.0 286.0 TA TA Y 0 20 0 0 192 0 NaN NaN NaN 0 6 2007 WD Normal 135000.0
1071 1072 60 RL 78.0 11700 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes RRAn Norm 1Fam 2Story 6 6 1968 1968 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 298.0 Unf 0.0 429.0 727.0 GasA ... Y SBrkr 829 727 0 1556 0.0 0.0 1 1 4 1 TA 8 Typ 0 NaN Attchd 1968.0 Unf 2.0 441.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 154000.0
1072 1073 50 RL 50.0 7585 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Artery Norm 1Fam 1.5Fin 5 3 1948 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Fa Fa Mn Unf 0.0 Unf 0.0 810.0 810.0 GasA ... Y FuseA 1002 454 0 1456 1.0 1.0 1 0 4 1 TA 7 Typ 1 TA Detchd 1954.0 Unf 1.0 280.0 TA TA P 0 0 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal 91500.0
1073 1074 60 RL 75.0 7950 Pave NaN IR1 Bnk AllPub Corner Gtl Edwards Norm Norm 1Fam 2Story 6 6 1977 1977 Hip CompShg HdBoard Plywood BrkFace 140.0 TA TA CBlock TA TA No BLQ 535.0 Unf 0.0 155.0 690.0 GasA ... Y SBrkr 698 728 0 1426 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1977.0 Fin 2.0 440.0 TA TA Y 252 0 0 0 0 0 NaN MnPrv NaN 0 7 2009 WD Normal 159500.0
1074 1075 20 RL 74.0 8556 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1240.0 1240.0 GasA ... Y SBrkr 1240 0 0 1240 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 2006.0 RFn 3.0 826.0 TA TA Y 140 93 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 194000.0
1075 1076 70 RL 75.0 13125 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 7 6 1940 1984 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No BLQ 410.0 Unf 0.0 390.0 800.0 GasA ... Y SBrkr 960 780 0 1740 0.0 0.0 1 1 3 1 TA 6 Typ 2 Gd Attchd 1940.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2007 CWD Normal 219500.0
1076 1077 50 RL 60.0 10800 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 8 1936 1989 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock Fa TA No ALQ 626.0 Unf 0.0 170.0 796.0 GasA ... Y SBrkr 1096 370 0 1466 0.0 1.0 2 0 3 1 Gd 7 Min1 1 TA Attchd 1950.0 Unf 2.0 566.0 TA TA Y 436 21 0 0 0 0 NaN NaN Shed 500 4 2006 WD Normal 170000.0
1077 1078 20 RL NaN 15870 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 5 1969 1969 Gable CompShg VinylSd Plywood None 0.0 TA TA CBlock TA TA Mn BLQ 75.0 Rec 791.0 230.0 1096.0 GasA ... Y SBrkr 1096 0 0 1096 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1969.0 Fin 1.0 299.0 TA TA Y 240 32 0 0 0 0 NaN NaN NaN 0 3 2006 WD Abnorml 138800.0
1078 1079 120 RM 37.0 4435 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm TwnhsE 1Story 6 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 169.0 Gd TA PConc Gd TA Mn GLQ 662.0 Unf 0.0 186.0 848.0 GasA ... Y SBrkr 848 0 0 848 1.0 0.0 1 0 1 1 Gd 3 Typ 1 Gd Attchd 2004.0 RFn 2.0 420.0 TA TA Y 140 0 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 155900.0
1079 1080 20 RL 65.0 8775 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 5 1994 1994 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No GLQ 495.0 Unf 0.0 495.0 990.0 GasA ... Y SBrkr 990 0 0 990 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1996.0 Unf 1.0 299.0 TA TA Y 0 64 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal 126000.0
1080 1081 20 RL 80.0 11040 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 7 1971 2004 Gable CompShg VinylSd VinylSd BrkFace 144.0 Gd Gd CBlock TA TA No ALQ 656.0 Unf 0.0 602.0 1258.0 GasA ... Y SBrkr 1258 0 0 1258 0.0 1.0 2 0 3 1 Gd 5 Typ 0 NaN Attchd 1971.0 RFn 2.0 528.0 TA TA Y 55 0 0 216 0 0 NaN NaN NaN 0 10 2008 COD Abnorml 145000.0
1081 1082 20 RL 75.0 7500 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Feedr Norm 1Fam 1Story 5 5 1963 1963 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No ALQ 824.0 Unf 0.0 216.0 1040.0 GasA ... Y SBrkr 1040 0 0 1040 1.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Attchd 1963.0 Fin 1.0 308.0 TA TA Y 0 0 220 0 0 0 NaN MnPrv NaN 0 6 2010 WD Normal 133000.0
1082 1083 20 RL 70.0 8749 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd BrkFace 100.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1459.0 1459.0 GasA ... Y SBrkr 1459 0 0 1459 0.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2002.0 RFn 2.0 527.0 TA TA Y 192 39 0 0 0 0 NaN NaN NaN 0 9 2007 WD Normal 192000.0
1083 1084 20 RL 80.0 8800 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1964 1964 Hip CompShg HdBoard HdBoard BrkFace 425.0 TA TA CBlock TA TA No BLQ 553.0 Unf 0.0 698.0 1251.0 GasA ... Y SBrkr 1251 0 0 1251 1.0 0.0 1 0 3 1 TA 6 Typ 2 Gd Attchd 1964.0 RFn 1.0 461.0 TA TA Y 0 116 0 0 0 0 NaN MnPrv Shed 700 3 2006 WD Normal 160000.0
1084 1085 60 RL NaN 13031 Pave NaN IR2 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1995 1996 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No ALQ 592.0 Unf 0.0 99.0 691.0 GasA ... Y SBrkr 691 807 0 1498 0.0 0.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1995.0 Fin 2.0 409.0 TA TA Y 315 44 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 187500.0
1085 1086 85 RL 73.0 9069 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam SFoyer 6 6 1992 1992 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA Av GLQ 747.0 Unf 0.0 189.0 936.0 GasA ... Y SBrkr 996 0 0 996 1.0 0.0 1 0 2 1 Gd 5 Typ 0 NaN Attchd 1992.0 Unf 2.0 564.0 TA TA Y 120 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 147000.0
1086 1087 160 RM NaN 1974 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 2Story 4 5 1973 1973 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock TA TA No BLQ 334.0 Unf 0.0 212.0 546.0 GasA ... Y SBrkr 546 546 0 1092 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1973.0 RFn 1.0 286.0 TA TA Y 120 96 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 83500.0
1087 1088 60 FV 85.0 10574 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Mn Unf 0.0 Unf 0.0 1082.0 1082.0 GasA ... Y SBrkr 1082 871 0 1953 0.0 0.0 2 1 3 1 Gd 9 Typ 1 Gd Attchd 2005.0 RFn 3.0 1043.0 TA TA Y 160 50 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 252000.0
1088 1089 160 RM 24.0 2522 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm Twnhs 2Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd Stone 50.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 970.0 970.0 GasA ... Y SBrkr 970 739 0 1709 0.0 0.0 2 0 3 1 Gd 7 Maj1 0 NaN Detchd 2004.0 Unf 2.0 380.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 137500.0
1089 1090 120 FV 37.0 3316 Pave Pave IR1 Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 1Story 8 5 2005 2005 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No GLQ 1039.0 Unf 0.0 208.0 1247.0 GasA ... Y SBrkr 1247 0 0 1247 1.0 0.0 1 1 1 1 Gd 4 Typ 1 Gd Attchd 2005.0 Fin 2.0 550.0 TA TA Y 0 84 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 197000.0
1090 1091 90 RL 60.0 8544 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm Duplex 1Story 3 4 1950 1950 Gable CompShg BrkFace BrkFace None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 Wall ... N FuseA 1040 0 0 1040 0.0 0.0 2 0 2 2 TA 6 Typ 0 NaN Detchd 1987.0 Unf 2.0 400.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 92900.0
1091 1092 160 FV 24.0 2160 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 7 5 1999 2000 Gable CompShg MetalSd MetalSd BrkFace 212.0 Gd TA PConc Gd TA No BLQ 510.0 Unf 0.0 90.0 600.0 GasA ... Y SBrkr 624 628 0 1252 1.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Detchd 1999.0 Unf 2.0 462.0 TA TA Y 0 48 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal 160000.0
1092 1093 50 RL 60.0 8400 Pave NaN Reg Bnk AllPub Inside Gtl SWISU Norm Norm 1Fam 1.5Fin 6 5 1925 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No Rec 423.0 Unf 0.0 758.0 1181.0 GasA ... Y SBrkr 1390 304 0 1694 0.0 0.0 2 0 4 1 TA 7 Typ 1 Gd Detchd 1925.0 Unf 2.0 576.0 TA TA Y 342 0 128 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 136500.0
1093 1094 20 RL 71.0 9230 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Feedr Norm 1Fam 1Story 5 8 1965 1998 Hip CompShg MetalSd MetalSd BrkFace 166.0 TA TA CBlock TA TA Mn GLQ 661.0 Unf 0.0 203.0 864.0 GasA ... Y SBrkr 1200 0 0 1200 1.0 0.0 1 1 1 1 Gd 6 Typ 0 NaN Detchd 1977.0 Unf 2.0 884.0 TA TA Y 0 64 0 0 0 0 NaN MnPrv NaN 0 10 2006 WD Normal 146000.0
1094 1095 20 RL 74.0 5868 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1956 2000 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No BLQ 248.0 Rec 240.0 448.0 936.0 GasA ... Y SBrkr 936 0 0 936 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1956.0 Fin 1.0 308.0 TA TA Y 0 0 80 0 160 0 NaN NaN NaN 0 5 2010 WD Normal 129000.0
1095 1096 20 RL 78.0 9317 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 6 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 24.0 Unf 0.0 1290.0 1314.0 GasA ... Y SBrkr 1314 0 0 1314 0.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2006.0 RFn 2.0 440.0 TA TA Y 0 22 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal 176432.0
1096 1097 70 RM 60.0 6882 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 2Story 6 7 1914 2006 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 684.0 684.0 GasA ... Y SBrkr 773 582 0 1355 0.0 0.0 1 1 3 1 Gd 7 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 136 0 115 0 0 0 NaN NaN NaN 0 3 2007 WD Normal 127000.0
1097 1098 120 RL NaN 3696 Pave NaN Reg Lvl AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 1986 1986 Gable CompShg HdBoard HdBoard None 0.0 Gd TA CBlock Gd TA No Unf 0.0 Unf 0.0 1074.0 1074.0 GasA ... Y SBrkr 1088 0 0 1088 0.0 0.0 1 1 2 1 Gd 5 Typ 0 NaN Attchd 1987.0 RFn 2.0 461.0 TA TA Y 0 74 137 0 0 0 NaN NaN NaN 0 10 2007 WD Normal 170000.0
1098 1099 50 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 4 6 1936 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No BLQ 672.0 Unf 0.0 0.0 672.0 GasA ... Y SBrkr 757 567 0 1324 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1936.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 128000.0
1099 1100 20 RL 82.0 11880 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes RRAn Norm 1Fam 1Story 7 5 1978 1978 Gable CompShg Plywood Plywood BrkFace 206.0 TA TA CBlock Gd TA No ALQ 704.0 Unf 0.0 567.0 1271.0 GasA ... Y SBrkr 1601 0 0 1601 0.0 0.0 2 0 3 1 TA 7 Typ 1 TA Attchd 1978.0 RFn 2.0 478.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2009 COD Abnorml 157000.0
1100 1101 30 RL 60.0 8400 Pave NaN Reg Bnk AllPub Inside Gtl SWISU Norm Norm 1Fam 1Story 2 5 1920 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA Fa No Rec 290.0 Unf 0.0 0.0 290.0 GasA ... N FuseF 438 0 0 438 0.0 0.0 1 0 1 1 Fa 3 Typ 0 NaN Detchd 1930.0 Unf 1.0 246.0 TA TA N 0 0 0 0 0 0 NaN NaN NaN 0 1 2009 WD Normal 60000.0
1101 1102 20 RL 61.0 9758 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1971 1971 Gable CompShg HdBoard MetalSd None 0.0 TA TA CBlock TA TA No BLQ 412.0 LwQ 287.0 251.0 950.0 GasA ... Y SBrkr 950 0 0 950 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1981.0 Unf 1.0 280.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 119500.0
1102 1103 20 RL 70.0 7000 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1960 2002 Gable CompShg Wd Sdng Wd Sdng BrkFace 45.0 TA TA CBlock TA TA No Rec 588.0 Unf 0.0 422.0 1010.0 GasA ... Y SBrkr 1134 0 0 1134 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Attchd 1960.0 RFn 1.0 254.0 TA TA Y 0 16 0 0 0 0 NaN MnWw NaN 0 4 2007 WD Family 135000.0
1103 1104 20 RL 79.0 8910 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 6 1959 1959 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA Mn ALQ 655.0 Unf 0.0 0.0 655.0 GasA ... Y SBrkr 1194 0 0 1194 0.0 1.0 1 0 3 1 TA 6 Typ 1 Fa BuiltIn 1954.0 Fin 2.0 539.0 TA TA Y 0 0 192 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 159500.0
1104 1105 160 RM 24.0 2016 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm TwnhsE 2Story 5 5 1970 1970 Gable CompShg HdBoard HdBoard BrkFace 304.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 630.0 630.0 GasA ... Y SBrkr 630 672 0 1302 0.0 0.0 2 1 3 1 TA 6 Typ 0 NaN Detchd 1970.0 Unf 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal 106000.0
1105 1106 60 RL 98.0 12256 Pave NaN IR1 Lvl AllPub Corner Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1994 1995 Gable CompShg HdBoard HdBoard BrkFace 362.0 Gd TA PConc Ex TA Av GLQ 1032.0 Unf 0.0 431.0 1463.0 GasA ... Y SBrkr 1500 1122 0 2622 1.0 0.0 2 1 3 1 Gd 9 Typ 2 TA Attchd 1994.0 RFn 2.0 712.0 TA TA Y 186 32 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 325000.0
1106 1107 20 RL 114.0 10357 Pave NaN IR1 Lvl AllPub Corner Gtl SawyerW Feedr Norm 1Fam 1Story 7 5 1990 1991 Hip CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA Mn GLQ 738.0 Unf 0.0 172.0 910.0 GasA ... Y SBrkr 1442 0 0 1442 1.0 0.0 2 0 3 1 Gd 6 Typ 1 TA Attchd 1990.0 Fin 2.0 719.0 TA TA Y 0 244 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 179900.0
1107 1108 60 RL 168.0 23257 Pave NaN IR3 HLS AllPub CulDSac Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex Gd No Unf 0.0 Unf 0.0 868.0 868.0 GasA ... Y SBrkr 887 1134 0 2021 0.0 0.0 2 1 3 1 Gd 9 Typ 1 Gd BuiltIn 2006.0 RFn 2.0 422.0 TA TA Y 0 100 0 0 0 0 NaN NaN NaN 0 9 2006 New Partial 274725.0
1108 1109 60 RL NaN 8063 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2000 2000 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 924.0 924.0 GasA ... Y SBrkr 948 742 0 1690 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 2000.0 RFn 2.0 463.0 TA TA Y 100 48 0 0 0 0 NaN NaN NaN 0 11 2007 WD Abnorml 181000.0
1109 1110 20 RL 107.0 11362 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2004 2005 Gable CompShg MetalSd MetalSd Stone 42.0 Gd TA PConc Ex TA Mn GLQ 1039.0 Unf 0.0 797.0 1836.0 GasA ... Y SBrkr 1836 0 0 1836 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2004.0 Fin 3.0 862.0 TA TA Y 125 185 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal 280000.0
1110 1111 60 RL NaN 8000 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1995 1996 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No GLQ 219.0 Unf 0.0 554.0 773.0 GasA ... Y SBrkr 773 885 0 1658 1.0 0.0 2 1 3 1 TA 8 Typ 1 TA Attchd 1995.0 Fin 2.0 431.0 TA TA Y 224 84 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 188000.0
1111 1112 60 RL 80.0 10480 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 7 6 1976 1976 Hip CompShg Plywood Plywood BrkFace 660.0 TA TA CBlock TA TA No ALQ 403.0 Unf 0.0 400.0 803.0 GasA ... Y SBrkr 1098 866 0 1964 0.0 0.0 2 1 4 1 TA 8 Typ 1 Gd Attchd 1976.0 RFn 2.0 483.0 TA TA Y 0 69 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal 205000.0
1112 1113 20 RL 73.0 7100 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 7 1957 1957 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA TA No GLQ 708.0 Unf 0.0 108.0 816.0 GasA ... Y FuseA 816 0 0 816 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1957.0 Unf 1.0 308.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 129900.0
1113 1114 20 RL 66.0 8923 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1953 2006 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No BLQ 643.0 Unf 0.0 365.0 1008.0 GasA ... Y SBrkr 1008 0 0 1008 1.0 0.0 1 0 2 1 Gd 6 Typ 0 NaN Attchd 1953.0 Unf 1.0 240.0 TA TA Y 0 18 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 134500.0
1114 1115 20 RL 90.0 5400 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 7 1954 2000 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No Rec 415.0 Unf 0.0 418.0 833.0 GasA ... Y SBrkr 833 0 0 833 0.0 0.0 1 0 2 1 Gd 4 Typ 0 NaN Detchd 1955.0 Unf 1.0 326.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 8 2006 WD Normal 117000.0
1115 1116 20 RL 93.0 12085 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2007 2007 Hip CompShg VinylSd VinylSd Stone 328.0 Gd TA PConc Ex TA No GLQ 1004.0 Unf 0.0 730.0 1734.0 GasA ... Y SBrkr 1734 0 0 1734 1.0 0.0 2 0 3 1 Ex 7 Typ 1 Gd Attchd 2007.0 RFn 3.0 928.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2007 New Partial 318000.0
1116 1117 80 RL NaN 7750 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam SLvl 8 5 2002 2002 Hip CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 353.0 Unf 0.0 55.0 408.0 GasA ... Y SBrkr 779 640 0 1419 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA BuiltIn 2002.0 Fin 2.0 527.0 TA TA Y 120 0 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal 184100.0
1117 1118 20 RL 57.0 9764 Pave NaN IR1 Lvl AllPub FR2 Gtl Sawyer Feedr Norm 1Fam 1Story 5 7 1967 2003 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No BLQ 702.0 Unf 0.0 192.0 894.0 GasA ... Y SBrkr 894 0 0 894 1.0 0.0 1 0 3 1 Gd 5 Typ 0 NaN Attchd 1967.0 RFn 2.0 450.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 130000.0
1118 1119 80 RL 85.0 13825 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam SLvl 5 6 1958 1987 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No Unf 0.0 Unf 0.0 533.0 533.0 GasA ... Y SBrkr 1021 580 0 1601 0.0 1.0 1 0 3 1 TA 6 Min2 0 NaN BuiltIn 1958.0 RFn 1.0 300.0 TA TA Y 280 34 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal 140000.0
1119 1120 20 RL 70.0 7560 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1959 1959 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA CBlock TA TA No LwQ 369.0 Unf 0.0 671.0 1040.0 GasA ... Y FuseA 1040 0 0 1040 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1959.0 RFn 1.0 286.0 TA TA Y 140 0 252 0 0 0 NaN GdWo NaN 0 7 2006 WD Normal 133700.0
1120 1121 30 RM 59.0 8263 Pave NaN Reg Bnk AllPub Inside Mod IDOTRR Norm Norm 1Fam 1Story 6 5 1920 1950 Gable CompShg BrkFace BrkFace None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 1012.0 1012.0 GasA ... Y FuseA 1012 0 0 1012 0.0 0.0 1 0 2 1 TA 6 Typ 1 Gd Detchd 1920.0 Unf 1.0 308.0 TA TA Y 0 22 112 0 0 0 NaN MnPrv NaN 0 5 2007 WD Normal 118400.0
1121 1122 20 RL 84.0 10084 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 196.0 Gd TA PConc Gd TA Av GLQ 24.0 Unf 0.0 1528.0 1552.0 GasA ... Y SBrkr 1552 0 0 1552 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2005.0 RFn 3.0 782.0 TA TA Y 144 20 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial 212900.0
1122 1123 20 RL NaN 8926 Pave NaN IR1 Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 1Story 4 3 1956 1956 Gable CompShg AsbShng AsbShng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 672.0 672.0 GasA ... Y FuseA 960 0 0 960 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Basment 1956.0 Unf 1.0 288.0 TA TA Y 64 0 0 0 160 0 NaN MnPrv NaN 0 10 2009 COD Abnorml 112000.0
1123 1124 20 RL 50.0 9405 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 9 1947 2008 Hip CompShg VinylSd VinylSd None 0.0 TA Ex CBlock TA TA No Unf 0.0 Unf 0.0 698.0 698.0 GasA ... Y SBrkr 698 0 0 698 0.0 1.0 1 0 2 1 TA 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 200 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 118000.0
1124 1125 80 RL NaN 9125 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam SLvl 7 5 1992 1992 Gable CompShg HdBoard HdBoard BrkFace 170.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 384.0 384.0 GasA ... Y SBrkr 812 670 0 1482 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1992.0 Fin 2.0 392.0 TA TA Y 100 25 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 163900.0
1125 1126 20 RL 60.0 10434 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 4 5 1955 1955 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1005.0 1005.0 GasA ... Y SBrkr 1005 0 0 1005 0.0 0.0 1 0 2 1 Fa 5 Typ 1 TA Detchd 1977.0 Unf 2.0 672.0 Fa Fa Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal 115000.0
1126 1127 120 RL 53.0 3684 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2007 2007 Hip CompShg VinylSd VinylSd BrkFace 130.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1373.0 1373.0 GasA ... Y SBrkr 1555 0 0 1555 0.0 0.0 2 0 2 1 Gd 7 Typ 1 TA Attchd 2007.0 Fin 3.0 660.0 TA TA Y 143 20 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 174000.0
1127 1128 20 RL 182.0 14572 Pave NaN IR3 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 1Story 7 5 2004 2004 Hip CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 1300.0 Unf 0.0 230.0 1530.0 GasA ... Y SBrkr 1530 0 0 1530 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2004.0 Fin 3.0 630.0 TA TA Y 144 36 0 0 0 0 NaN NaN NaN 0 11 2007 WD Family 259000.0
1128 1129 60 RL 59.0 11796 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2004 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 847.0 847.0 GasA ... Y SBrkr 847 1112 0 1959 0.0 0.0 2 1 4 1 Gd 8 Typ 1 Gd BuiltIn 2004.0 Fin 2.0 434.0 TA TA Y 100 48 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 215000.0
1129 1130 90 RM 60.0 7200 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm Duplex SFoyer 5 5 1980 1980 Gable CompShg MetalSd MetalSd BrkFace 180.0 TA TA CBlock Gd TA Gd GLQ 936.0 Unf 0.0 0.0 936.0 GasA ... Y SBrkr 936 0 0 936 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1980.0 Unf 2.0 672.0 TA TA Y 49 0 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 140000.0
1130 1131 50 RL 65.0 7804 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Norm Norm 1Fam 1.5Fin 4 3 1928 1950 Gable CompShg WdShing Plywood None 0.0 TA TA BrkTil TA TA No BLQ 622.0 Unf 0.0 500.0 1122.0 GasA ... Y SBrkr 1328 653 0 1981 1.0 0.0 2 0 4 1 Gd 7 Min2 2 TA Detchd 1981.0 Unf 2.0 576.0 TA TA Y 431 44 0 0 0 0 NaN MnPrv NaN 0 12 2009 WD Normal 135000.0
1131 1132 20 RL 63.0 10712 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 5 1991 1992 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA Mn BLQ 212.0 Unf 0.0 762.0 974.0 GasA ... Y SBrkr 974 0 0 974 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 28 0 0 0 0 NaN MnPrv NaN 0 9 2007 Oth Abnorml 93500.0
1132 1133 70 RM 90.0 9900 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 6 4 1880 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA Mn Unf 0.0 Unf 0.0 1008.0 1008.0 GasW ... Y SBrkr 1178 1032 0 2210 0.0 0.0 2 0 5 1 Fa 8 Typ 0 NaN Detchd 1930.0 Unf 1.0 205.0 Fa TA N 0 48 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 117500.0
1133 1134 60 RL 80.0 9828 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 8 5 1995 1995 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 584.0 Unf 0.0 544.0 1128.0 GasA ... Y SBrkr 1142 878 0 2020 0.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1995.0 RFn 2.0 466.0 TA TA Y 0 155 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 239500.0
1134 1135 60 RL 57.0 8773 Pave NaN IR1 HLS AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1997 1997 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Av Unf 0.0 Unf 0.0 916.0 916.0 GasA ... Y SBrkr 916 684 0 1600 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1997.0 Fin 2.0 460.0 TA TA Y 100 38 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 169000.0
1135 1136 30 RM 60.0 6180 Pave NaN Reg Lvl AllPub Corner Gtl BrkSide Norm Norm 1Fam 1Story 6 5 1926 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 960.0 960.0 GasA ... N SBrkr 986 0 0 986 0.0 0.0 1 0 2 1 TA 5 Typ 1 Gd Detchd 1926.0 Unf 1.0 180.0 TA TA Y 0 128 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 102000.0
1136 1137 50 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Fin 6 5 1950 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No BLQ 280.0 Unf 0.0 752.0 1032.0 GasA ... Y FuseA 1032 220 0 1252 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1950.0 Unf 1.0 288.0 TA TA Y 0 0 96 0 0 0 NaN NaN NaN 0 4 2008 WD Abnorml 119000.0
1137 1138 50 RL 54.0 6342 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Feedr Norm 1Fam 1.5Fin 5 8 1875 1996 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA TA No Unf 0.0 Unf 0.0 780.0 780.0 GasA ... N SBrkr 780 240 0 1020 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 176 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 94000.0
1138 1139 20 RL NaN 9819 Pave NaN IR1 Lvl AllPub Inside Mod Mitchel Norm Norm 1Fam 1Story 6 5 1977 1977 Gable CompShg Plywood ImStucc None 0.0 TA TA PConc TA TA Gd ALQ 1567.0 Unf 0.0 0.0 1567.0 GasA ... Y SBrkr 1567 0 0 1567 1.0 0.0 2 0 2 1 Gd 5 Typ 2 TA Attchd 1977.0 RFn 2.0 714.0 TA TA Y 264 32 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 196000.0
1139 1140 30 RL 98.0 8731 Pave NaN IR1 Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 5 5 1920 1950 Gable CompShg Stucco Stucco None 0.0 TA Fa BrkTil TA TA No BLQ 645.0 Unf 0.0 270.0 915.0 GasA ... Y SBrkr 1167 0 0 1167 0.0 0.0 1 0 3 1 TA 6 Maj1 1 Gd Detchd 1972.0 Unf 2.0 495.0 TA TA Y 0 0 216 0 126 0 NaN NaN NaN 0 5 2007 WD Normal 144000.0
1140 1141 20 RL 60.0 7350 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 7 1951 1951 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA Mn ALQ 852.0 Unf 0.0 100.0 952.0 GasA ... Y SBrkr 952 0 0 952 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1988.0 Unf 2.0 840.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2008 COD Abnorml 139000.0
1141 1142 60 RL NaN 10304 Pave NaN IR1 Lvl AllPub CulDSac Gtl NWAmes PosN Norm 1Fam 2Story 5 7 1976 1976 Gable CompShg Plywood Plywood BrkFace 44.0 TA Gd CBlock TA TA No ALQ 381.0 Unf 0.0 399.0 780.0 GasA ... Y SBrkr 1088 780 0 1868 1.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1976.0 Unf 2.0 484.0 TA TA Y 448 96 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal 197500.0
1142 1143 60 RL 77.0 9965 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 8 5 2006 2007 Hip CompShg VinylSd VinylSd Stone 340.0 Gd TA PConc Ex TA Gd GLQ 1150.0 Unf 0.0 316.0 1466.0 GasA ... Y SBrkr 1466 1362 0 2828 1.0 0.0 3 0 4 1 Gd 11 Typ 1 TA BuiltIn 2006.0 RFn 3.0 1052.0 TA TA Y 125 144 0 0 0 0 NaN NaN NaN 0 4 2007 New Partial 424870.0
1143 1144 20 RL NaN 9000 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 3 1959 1959 Gable CompShg Wd Sdng Plywood None 0.0 TA TA CBlock TA TA No GLQ 288.0 Unf 0.0 718.0 1006.0 GasA ... Y SBrkr 1006 0 0 1006 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 24 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 80000.0
1144 1145 190 RL 60.0 12180 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 2fmCon 1.5Fin 4 4 1941 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Fa BrkTil Gd TA No BLQ 348.0 Unf 0.0 324.0 672.0 Grav ... N FuseA 672 252 0 924 1.0 0.0 1 0 2 1 Fa 5 Typ 0 NaN Detchd 1941.0 Unf 1.0 280.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 7 2010 WD Normal 80000.0
1145 1146 50 RM 52.0 6240 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 6 1928 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 1042.0 1042.0 GasA ... Y SBrkr 1042 534 0 1576 0.0 0.0 1 0 3 1 TA 8 Typ 1 Gd Detchd 1928.0 Unf 1.0 225.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2006 WD Family 149000.0
1146 1147 20 RL NaN 11200 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 6 5 1985 1985 Gable CompShg Wd Sdng Wd Shng BrkFace 85.0 Gd TA CBlock Gd TA No GLQ 1258.0 Unf 0.0 40.0 1298.0 GasA ... Y SBrkr 1298 0 0 1298 1.0 0.0 2 0 3 1 Gd 5 Typ 1 TA Attchd 1985.0 Unf 2.0 403.0 TA TA Y 165 26 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 180000.0
1147 1148 70 RL 75.0 12000 Pave NaN Reg Bnk AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 7 7 1941 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 275.0 Unf 0.0 429.0 704.0 GasA ... Y SBrkr 860 704 0 1564 0.0 0.0 1 1 3 1 Fa 7 Typ 1 Gd Attchd 1941.0 Unf 1.0 234.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 174500.0
1148 1149 50 RM NaN 5700 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 7 7 1926 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 572.0 572.0 GasA ... Y SBrkr 572 539 0 1111 0.0 0.0 1 0 2 1 TA 5 Typ 1 Gd Detchd 1982.0 Unf 1.0 288.0 TA TA Y 0 0 176 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 116900.0
1149 1150 70 RM 50.0 9000 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 2Story 7 9 1920 1988 Hip CompShg VinylSd VinylSd None 0.0 TA Gd PConc TA TA No ALQ 624.0 Unf 0.0 26.0 650.0 GasA ... Y SBrkr 832 650 0 1482 0.0 1.0 1 0 3 1 TA 7 Typ 0 NaN Detchd 1930.0 Unf 2.0 324.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 143000.0
1150 1151 20 RL 57.0 8280 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1950 1950 Gable CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 932.0 932.0 GasA ... Y FuseA 932 0 0 932 0.0 0.0 1 0 2 1 Gd 4 Typ 1 Gd Attchd 1950.0 Unf 1.0 306.0 TA TA Y 0 0 214 0 0 0 NaN GdPrv NaN 0 11 2007 WD Normal 124000.0
1151 1152 20 RL 134.0 17755 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 4 1959 1959 Gable CompShg HdBoard Plywood BrkFace 132.0 TA TA CBlock TA TA No BLQ 176.0 Unf 0.0 1290.0 1466.0 GasA ... Y SBrkr 1466 0 0 1466 0.0 0.0 1 1 3 1 Fa 6 Typ 2 Gd Attchd 1959.0 Fin 2.0 528.0 TA TA Y 0 140 0 0 100 0 NaN NaN NaN 0 11 2006 WD Normal 149900.0
1152 1153 20 RL 90.0 14115 Pave NaN IR1 Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 6 7 1956 2004 Gable CompShg Stone Stone None 0.0 TA TA PConc TA TA No ALQ 296.0 GLQ 547.0 230.0 1073.0 GasA ... Y SBrkr 1811 0 0 1811 0.0 0.0 1 0 2 1 Ex 6 Typ 1 Gd Attchd 1956.0 Fin 2.0 470.0 TA TA Y 0 0 280 0 0 0 NaN NaN NaN 0 7 2006 WD Abnorml 230000.0
1153 1154 30 RM NaN 5890 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Norm Norm 1Fam 1Story 6 8 1930 2007 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd Gd BrkTil TA TA Av ALQ 538.0 Unf 0.0 278.0 816.0 GasA ... Y SBrkr 816 0 0 816 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 2002.0 Unf 1.0 432.0 TA TA Y 0 0 96 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 120500.0
1154 1155 60 RL NaN 13700 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 2Story 7 6 1965 1988 Gable CompShg VinylSd VinylSd Stone 288.0 TA TA CBlock TA TA Gd ALQ 454.0 Unf 0.0 410.0 864.0 GasA ... Y SBrkr 902 918 0 1820 0.0 0.0 1 2 4 1 Gd 8 Typ 2 Gd Attchd 1965.0 Unf 2.0 492.0 TA TA Y 60 84 0 0 273 0 NaN GdPrv NaN 0 5 2008 WD Normal 201800.0
1155 1156 20 RL 90.0 10768 Pave NaN IR1 Lvl AllPub Corner Gtl Veenker Norm Norm 1Fam 1Story 5 8 1976 2004 Gable CompShg Plywood Plywood None 0.0 Gd Gd CBlock Gd TA Gd ALQ 1157.0 Unf 0.0 280.0 1437.0 GasA ... Y SBrkr 1437 0 0 1437 1.0 0.0 2 0 3 1 Gd 6 Typ 1 Fa Attchd 1976.0 RFn 2.0 528.0 TA TA Y 0 21 0 0 180 0 NaN NaN NaN 0 7 2007 WD Normal 218000.0
1156 1157 80 RL 85.0 9350 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 5 8 1965 1999 Gable CompShg BrkFace BrkFace None 0.0 TA Gd PConc TA TA Gd ALQ 633.0 Unf 0.0 586.0 1219.0 GasA ... Y SBrkr 1265 0 0 1265 0.0 1.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 1965.0 RFn 2.0 502.0 TA TA Y 0 92 0 96 0 0 NaN MnPrv NaN 0 10 2008 WD Normal 179900.0
1157 1158 120 RL 34.0 5001 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm Twnhs 1Story 7 5 2007 2008 Gable CompShg VinylSd VinylSd Stone 166.0 Gd TA PConc Gd TA No GLQ 904.0 Unf 0.0 410.0 1314.0 GasA ... Y SBrkr 1314 0 0 1314 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2008.0 RFn 2.0 626.0 TA TA Y 172 62 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 230000.0
1158 1159 20 RL 92.0 11932 Pave NaN Reg Lvl AllPub FR2 Gtl Somerst Feedr Norm 1Fam 1Story 8 5 2007 2008 Gable CompShg VinylSd VinylSd Stone 186.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1580.0 1580.0 GasA ... Y SBrkr 1580 0 0 1580 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2008.0 RFn 3.0 830.0 TA TA Y 0 24 0 0 0 0 NaN NaN NaN 0 6 2008 ConLD Partial 235128.0
1159 1160 60 RL 76.0 9120 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 6 6 1974 1974 Hip CompShg HdBoard HdBoard BrkFace 270.0 Gd TA CBlock TA TA No ALQ 442.0 Unf 0.0 459.0 901.0 GasA ... Y SBrkr 943 933 0 1876 0.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Attchd 1974.0 RFn 2.0 540.0 Gd TA Y 0 69 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 185000.0
1160 1161 160 RL 24.0 2280 Pave NaN Reg Lvl AllPub Inside Gtl NPkVill Norm Norm Twnhs 2Story 6 5 1978 1978 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock Gd TA No ALQ 311.0 Unf 0.0 544.0 855.0 GasA ... Y SBrkr 855 601 0 1456 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1978.0 Unf 2.0 440.0 TA TA Y 26 0 0 0 0 0 NaN NaN NaN 0 7 2010 WD Normal 146000.0
1161 1162 20 RL NaN 14778 Pave NaN IR1 Low AllPub CulDSac Gtl Crawfor PosN Norm 1Fam 1Story 6 7 1954 2006 Hip CompShg HdBoard HdBoard BrkFace 72.0 Gd TA CBlock TA TA No BLQ 728.0 Unf 0.0 568.0 1296.0 GasA ... Y SBrkr 1640 0 0 1640 1.0 0.0 1 0 3 1 Gd 7 Typ 1 Gd Detchd 1993.0 Unf 2.0 924.0 TA TA Y 108 0 0 216 0 0 NaN NaN NaN 0 11 2008 WD Normal 224000.0
1162 1163 20 RL 109.0 8724 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1968 1968 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock Gd TA No BLQ 492.0 Unf 0.0 402.0 894.0 GasA ... Y SBrkr 894 0 0 894 0.0 0.0 1 0 3 1 TA 5 Typ 1 Po Attchd 1968.0 Fin 2.0 450.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 129000.0
1163 1164 90 RL 60.0 12900 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Feedr Norm Duplex SFoyer 4 4 1969 1969 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA Av GLQ 1198.0 Unf 0.0 0.0 1198.0 GasA ... Y SBrkr 1258 0 0 1258 2.0 0.0 0 2 0 2 TA 6 Typ 0 NaN CarPort 1969.0 Unf 2.0 400.0 Fa TA Y 120 0 0 0 0 0 NaN NaN NaN 0 1 2008 WD Alloca 108959.0
1164 1165 80 RL NaN 16157 Pave NaN IR1 Lvl AllPub FR2 Gtl Veenker Feedr Norm 1Fam SLvl 5 7 1978 1978 Gable CompShg Plywood Plywood None 0.0 TA TA PConc Gd TA Gd ALQ 680.0 Rec 391.0 289.0 1360.0 GasA ... Y SBrkr 1432 0 0 1432 1.0 0.0 1 1 2 1 Gd 5 Typ 1 TA Attchd 1978.0 Unf 2.0 588.0 TA TA Y 168 180 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 194000.0
1165 1166 20 RL 79.0 9541 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 7 5 2009 2009 Gable CompShg VinylSd VinylSd Stone 268.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1502.0 1502.0 GasA ... Y SBrkr 1502 0 0 1502 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2009.0 RFn 2.0 644.0 TA TA Y 0 114 0 0 0 0 NaN NaN NaN 0 9 2009 New Partial 233170.0
1166 1167 20 RL 64.0 10475 Pave NaN IR1 Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2008 2008 Gable CompShg VinylSd VinylSd Stone 72.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1694.0 1694.0 GasA ... Y SBrkr 1694 0 0 1694 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2008.0 RFn 3.0 776.0 TA TA Y 160 33 0 0 0 0 NaN NaN NaN 0 2 2010 WD Normal 245350.0
1167 1168 60 RL 58.0 10852 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert RRAn Norm 1Fam 2Story 6 5 2000 2000 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No GLQ 786.0 Unf 0.0 173.0 959.0 GasA ... Y SBrkr 959 712 0 1671 1.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 2000.0 Fin 2.0 472.0 TA TA Y 0 38 0 0 0 0 NaN NaN NaN 0 2 2006 WD Normal 173000.0
1168 1169 70 RL 120.0 13728 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 2Story 6 7 1935 1986 Hip CompShg Stucco Stucco None 0.0 TA TA CBlock TA TA No Rec 626.0 Unf 0.0 501.0 1127.0 GasA ... Y SBrkr 1236 872 0 2108 0.0 0.0 2 0 4 1 Gd 7 Typ 2 TA Basment 1935.0 Unf 2.0 540.0 TA TA Y 0 0 0 0 90 0 NaN NaN NaN 0 7 2008 WD Normal 235000.0
1169 1170 60 RL 118.0 35760 Pave NaN IR1 Lvl AllPub CulDSac Gtl NoRidge Norm Norm 1Fam 2Story 10 5 1995 1996 Hip CompShg HdBoard HdBoard BrkFace 1378.0 Gd Gd PConc Ex TA Gd GLQ 1387.0 Unf 0.0 543.0 1930.0 GasA ... Y SBrkr 1831 1796 0 3627 1.0 0.0 3 1 4 1 Gd 10 Typ 1 TA Attchd 1995.0 Fin 3.0 807.0 TA TA Y 361 76 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 625000.0
1170 1171 80 RL 76.0 9880 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam SLvl 6 6 1977 1977 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA Av ALQ 522.0 Unf 0.0 574.0 1096.0 GasA ... Y SBrkr 1118 0 0 1118 1.0 0.0 1 0 3 1 TA 6 Typ 1 Po Attchd 1977.0 Fin 1.0 358.0 TA TA Y 203 0 0 0 0 576 Gd GdPrv NaN 0 7 2008 WD Normal 171000.0
1171 1172 20 RL 76.0 9120 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1958 1958 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No ALQ 662.0 Unf 0.0 599.0 1261.0 GasA ... Y SBrkr 1261 0 0 1261 1.0 0.0 1 0 3 1 TA 6 Typ 1 TA Attchd 1958.0 RFn 2.0 433.0 TA TA Y 0 0 0 0 288 0 NaN NaN Shed 1400 11 2008 WD Normal 163000.0
1172 1173 160 FV 35.0 4017 Pave Pave IR1 Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 2Story 7 5 2006 2007 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 625.0 625.0 GasA ... Y SBrkr 625 625 0 1250 0.0 0.0 2 1 2 1 Gd 5 Typ 0 NaN Detchd 2006.0 Fin 2.0 625.0 TA TA Y 0 54 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal 171900.0
1173 1174 50 RL 138.0 18030 Pave NaN IR1 Bnk AllPub Inside Gtl ClearCr Norm Norm 1Fam 1.5Fin 5 6 1946 1994 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 152.0 BLQ 469.0 977.0 1598.0 GasA ... Y SBrkr 1636 971 479 3086 0.0 0.0 3 0 3 1 Ex 12 Maj1 1 Gd NaN NaN NaN 0.0 0.0 NaN NaN Y 122 0 0 0 0 0 NaN MnPrv NaN 0 3 2007 WD Normal 200500.0
1174 1175 70 RL 80.0 16560 Pave NaN IR1 Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 6 8 1932 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Gd TA No Rec 503.0 Unf 0.0 449.0 952.0 GasA ... Y SBrkr 1170 1175 0 2345 0.0 0.0 2 1 4 1 TA 9 Typ 1 Gd Detchd 1932.0 Unf 2.0 360.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 239000.0
1175 1176 50 RL 85.0 10678 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 1.5Fin 8 5 1992 2000 Hip CompShg HdBoard HdBoard BrkFace 337.0 Gd TA PConc Gd TA No GLQ 700.0 Unf 0.0 983.0 1683.0 GasA ... Y SBrkr 2129 743 0 2872 0.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1992.0 Fin 2.0 541.0 TA TA Y 0 33 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal 285000.0
1176 1177 20 RL 37.0 6951 Pave NaN IR1 Lvl AllPub CulDSac Gtl Mitchel Norm Norm 1Fam 1Story 5 5 1984 1985 Gable CompShg HdBoard Plywood None 0.0 TA TA CBlock TA TA No ALQ 658.0 Unf 0.0 218.0 876.0 GasA ... Y SBrkr 923 0 0 923 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1984.0 Unf 1.0 264.0 TA TA Y 362 0 0 0 0 0 NaN MnPrv NaN 0 10 2008 WD Normal 119500.0
1177 1178 50 RM NaN 3950 Pave Grvl Reg Bnk AllPub Inside Gtl OldTown Artery Norm 1Fam 1.5Fin 6 8 1926 2004 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 468.0 Unf 0.0 350.0 818.0 GasA ... Y SBrkr 818 406 0 1224 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1926.0 Unf 1.0 210.0 TA TA N 0 0 116 0 0 0 NaN NaN NaN 0 12 2009 WD Normal 115000.0
1178 1179 50 RL 54.0 7681 Pave NaN IR1 Lvl AllPub FR2 Gtl Crawfor Norm Norm 1Fam 1.5Fin 5 6 1921 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 731.0 731.0 GasA ... Y SBrkr 820 523 0 1343 0.0 0.0 1 1 3 1 TA 7 Typ 1 Gd Detchd 1921.0 Unf 1.0 186.0 Fa TA Y 192 0 102 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 154900.0
1179 1180 20 RL 77.0 8335 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 1Story 5 5 1954 1954 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1124 0 0 1124 0.0 0.0 1 0 3 1 TA 5 Min2 1 Gd NaN NaN NaN 0.0 0.0 NaN NaN N 0 36 190 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 93000.0
1180 1181 60 RL NaN 11170 Pave NaN IR2 Lvl AllPub Corner Gtl Timber Norm Norm 1Fam 2Story 7 5 1990 1991 Gable CompShg MetalSd MetalSd None 0.0 TA TA Wood Gd TA No LwQ 1216.0 Unf 0.0 0.0 1216.0 GasA ... Y SBrkr 1298 1216 0 2514 0.0 0.0 2 1 4 1 TA 8 Typ 0 NaN Attchd 1990.0 Fin 2.0 693.0 TA TA Y 0 0 0 0 0 0 NaN GdPrv NaN 0 4 2006 WD Normal 250000.0
1181 1182 120 RM 64.0 5587 Pave NaN IR1 HLS AllPub Inside Mod Crawfor Norm Norm TwnhsE 1Story 8 5 2008 2008 Hip CompShg CemntBd CmentBd Stone 186.0 Ex TA PConc Ex TA Gd GLQ 1480.0 Unf 0.0 120.0 1600.0 GasA ... Y SBrkr 1652 0 0 1652 1.0 1.0 2 0 2 1 Gd 5 Typ 1 Gd Attchd 2008.0 Fin 2.0 482.0 TA TA Y 162 53 0 153 0 0 NaN NaN NaN 0 11 2008 New Partial 392500.0
1182 1183 60 RL 160.0 15623 Pave NaN IR1 Lvl AllPub Corner Gtl NoRidge Norm Norm 1Fam 2Story 10 5 1996 1996 Hip CompShg Wd Sdng ImStucc None 0.0 Gd TA PConc Ex TA Av GLQ 2096.0 Unf 0.0 300.0 2396.0 GasA ... Y SBrkr 2411 2065 0 4476 1.0 0.0 3 1 4 1 Ex 10 Typ 2 TA Attchd 1996.0 Fin 3.0 813.0 TA TA Y 171 78 0 0 0 555 Ex MnPrv NaN 0 7 2007 WD Abnorml 745000.0
1183 1184 30 RL 60.0 10800 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 6 1920 1950 Hip CompShg Stucco Stucco None 0.0 TA TA BrkTil TA TA No Rec 821.0 Unf 0.0 299.0 1120.0 GasA ... Y SBrkr 1130 0 0 1130 1.0 0.0 1 0 2 1 TA 5 Typ 1 Gd Detchd 1970.0 Unf 2.0 720.0 TA TA Y 229 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 120000.0
1184 1185 20 RL 50.0 35133 Grvl NaN Reg Lvl AllPub Inside Mod Timber Norm Norm 1Fam 1Story 5 4 1963 1963 Hip CompShg MetalSd MetalSd BrkFace 226.0 TA TA CBlock TA TA Gd Rec 1159.0 Unf 0.0 413.0 1572.0 GasA ... Y SBrkr 1572 0 0 1572 1.0 0.0 1 1 3 1 TA 5 Typ 2 TA 2Types 1963.0 RFn 3.0 995.0 TA TA Y 0 263 0 0 263 0 NaN NaN NaN 0 5 2007 WD Normal 186700.0
1185 1186 50 RL 60.0 9738 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 5 7 1924 1950 Gable CompShg AsbShng AsbShng None 0.0 TA Gd BrkTil TA TA No BLQ 392.0 Unf 0.0 392.0 784.0 GasA ... Y SBrkr 949 272 0 1221 1.0 0.0 1 0 4 1 TA 7 Typ 0 NaN Attchd 1965.0 Unf 1.0 392.0 TA TA Y 0 0 236 0 0 0 NaN NaN NaN 0 3 2006 WD Normal 104900.0
1186 1187 190 RL 107.0 10615 Pave NaN IR1 Bnk AllPub Corner Mod OldTown Artery Artery 2fmCon 2Story 3 5 1900 1970 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Fa TA Mn BLQ 440.0 Unf 0.0 538.0 978.0 GasA ... Y SBrkr 1014 685 0 1699 1.0 0.0 2 0 3 2 TA 7 Typ 0 NaN CarPort 1920.0 Unf 2.0 420.0 Fa Fa Y 0 74 0 0 0 0 NaN NaN NaN 0 8 2009 WD Abnorml 95000.0
1187 1188 20 RL 89.0 12461 Pave NaN Reg Lvl AllPub Corner Gtl NoRidge Norm Norm 1Fam 1Story 8 5 1994 1995 Gable CompShg ImStucc ImStucc None 0.0 Gd TA PConc Gd TA No GLQ 1456.0 Unf 0.0 168.0 1624.0 GasA ... Y SBrkr 1624 0 0 1624 1.0 0.0 2 0 2 1 Gd 5 Typ 1 Fa Attchd 1994.0 RFn 3.0 757.0 TA TA Y 0 114 192 0 0 0 NaN GdPrv NaN 0 7 2006 WD Normal 262000.0
1188 1189 60 RL 68.0 8935 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd BrkFace 95.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 831.0 831.0 GasA ... Y SBrkr 831 829 0 1660 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2002.0 RFn 2.0 493.0 TA TA Y 144 68 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 195000.0
1189 1190 60 RL 60.0 7500 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 1999 1999 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 994.0 994.0 GasA ... Y SBrkr 1028 776 0 1804 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1999.0 Fin 2.0 442.0 TA TA Y 140 60 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 189000.0
1190 1191 190 RL NaN 32463 Pave NaN Reg Low AllPub Inside Mod Mitchel Norm Norm 2fmCon 1Story 4 4 1961 1975 Gable CompShg MetalSd MetalSd Stone 149.0 TA Gd CBlock TA TA Av BLQ 1159.0 Unf 0.0 90.0 1249.0 GasA ... Y SBrkr 1622 0 0 1622 1.0 0.0 1 0 3 1 TA 7 Typ 1 TA 2Types 1975.0 Fin 4.0 1356.0 TA TA Y 439 0 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal 168000.0
1191 1192 160 FV 24.0 2645 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 8 5 1999 2000 Gable CompShg MetalSd MetalSd BrkFace 456.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 776.0 776.0 GasA ... Y SBrkr 764 677 0 1441 0.0 0.0 2 1 2 1 Gd 5 Typ 0 NaN Detchd 1999.0 Unf 2.0 492.0 TA TA Y 206 0 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal 174000.0
1192 1193 50 RM 60.0 9600 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 8 1925 1994 Gambrel CompShg VinylSd VinylSd None 0.0 TA TA PConc TA TA Mn Unf 0.0 Unf 0.0 702.0 702.0 GasA ... Y SBrkr 842 630 0 1472 0.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Detchd 1925.0 Unf 1.0 250.0 TA Fa P 0 0 84 0 0 0 NaN GdWo NaN 0 7 2007 WD Normal 125000.0
1193 1194 120 RM NaN 4500 Pave NaN Reg Lvl AllPub FR2 Gtl Mitchel Norm Norm TwnhsE 1Story 6 5 1999 1999 Hip CompShg VinylSd VinylSd BrkFace 425.0 TA TA PConc Ex TA No GLQ 883.0 Unf 0.0 341.0 1224.0 GasA ... Y SBrkr 1224 0 0 1224 1.0 0.0 2 0 2 1 TA 5 Typ 0 NaN Attchd 1999.0 Fin 2.0 402.0 TA TA Y 0 304 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 165000.0
1194 1195 60 RL 80.0 9364 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Norm Norm 1Fam 2Story 6 7 1969 1969 Gable CompShg HdBoard HdBoard Stone 143.0 TA TA CBlock TA TA No ALQ 371.0 Unf 0.0 292.0 663.0 GasA ... Y SBrkr 663 689 0 1352 0.0 0.0 1 1 4 1 TA 7 Typ 0 NaN Attchd 1969.0 Fin 1.0 299.0 TA TA Y 379 36 0 0 0 0 NaN MnPrv NaN 0 3 2010 WD Normal 158000.0
1195 1196 60 RL 51.0 8029 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 728.0 728.0 GasA ... Y SBrkr 728 728 0 1456 0.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 2005.0 Fin 2.0 400.0 TA TA Y 100 24 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 176000.0
1196 1197 60 RL 58.0 14054 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 879.0 879.0 GasA ... Y SBrkr 879 984 0 1863 0.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd BuiltIn 2006.0 Fin 3.0 660.0 TA TA Y 100 17 0 0 0 0 NaN NaN NaN 0 11 2006 New Partial 219210.0
1197 1198 75 RM 65.0 8850 Pave NaN IR1 Bnk AllPub Corner Gtl OldTown Norm Norm 1Fam 2.5Unf 7 6 1916 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 815.0 815.0 GasA ... Y SBrkr 815 875 0 1690 0.0 0.0 1 0 3 1 TA 7 Typ 1 Gd Detchd 1916.0 Unf 1.0 225.0 TA TA Y 0 0 330 0 0 0 NaN NaN NaN 0 7 2006 ConLw Normal 144000.0
1198 1199 20 RL 70.0 9100 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2001 2001 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1212.0 1212.0 GasA ... Y SBrkr 1212 0 0 1212 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2001.0 RFn 2.0 573.0 TA TA Y 356 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 178000.0
1199 1200 20 RL 75.0 11235 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 4 5 1963 1979 Gable CompShg HdBoard HdBoard BrkFace 51.0 TA TA CBlock TA TA No Rec 547.0 Unf 0.0 504.0 1051.0 GasA ... Y SBrkr 1382 0 0 1382 0.0 0.0 1 1 3 1 TA 6 Typ 1 Po Attchd 1974.0 Unf 2.0 459.0 TA TA Y 0 82 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal 148000.0
1200 1201 20 RL 71.0 9353 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 4 5 1970 1970 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 864.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1972.0 Unf 1.0 280.0 TA TA Y 0 0 0 0 0 0 NaN NaN Shed 0 7 2006 Oth Abnorml 116050.0
1201 1202 60 RL 80.0 10400 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1998 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Av Unf 0.0 Unf 0.0 866.0 866.0 GasA ... Y SBrkr 866 913 0 1779 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 1998.0 RFn 2.0 546.0 TA TA Y 198 36 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal 197900.0
1202 1203 50 RM 50.0 6000 Pave NaN Reg Lvl AllPub Corner Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 8 1925 1997 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 884.0 884.0 GasA ... Y SBrkr 884 464 0 1348 1.0 0.0 1 0 3 1 TA 5 Typ 1 Fa Detchd 1960.0 Unf 1.0 216.0 TA TA N 0 0 208 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 117000.0
1203 1204 20 RL 75.0 9750 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2000 2001 Gable CompShg VinylSd VinylSd BrkFace 171.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1630.0 1630.0 GasA ... Y SBrkr 1630 0 0 1630 0.0 0.0 2 0 3 1 Gd 6 Typ 1 TA Attchd 2000.0 Unf 2.0 451.0 TA TA Y 74 234 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal 213000.0
1204 1205 20 RL 78.0 10140 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 5 6 1975 1975 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA No ALQ 788.0 Unf 0.0 268.0 1056.0 GasA ... Y SBrkr 1074 0 0 1074 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1975.0 RFn 2.0 495.0 TA TA Y 0 88 0 0 0 0 NaN MnPrv NaN 0 7 2006 WD Normal 153500.0
1205 1206 20 RL 90.0 14684 Pave NaN IR1 Lvl AllPub CulDSac Gtl SawyerW Norm Norm 1Fam 1Story 7 7 1990 1991 Hip CompShg HdBoard HdBoard BrkFace 234.0 Gd TA CBlock Gd TA Mn ALQ 485.0 BLQ 177.0 1496.0 2158.0 GasA ... Y SBrkr 2196 0 0 2196 0.0 0.0 2 0 3 1 Gd 7 Typ 1 TA Attchd 1990.0 RFn 3.0 701.0 TA TA Y 84 70 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 271900.0
1206 1207 20 RH NaN 8900 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 4 4 1966 1966 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Rec 1056.0 Unf 0.0 0.0 1056.0 GasA ... Y SBrkr 1056 0 0 1056 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1966.0 Unf 1.0 384.0 TA TA Y 0 42 0 0 0 0 NaN MnPrv NaN 0 11 2006 WD Normal 107000.0
1207 1208 20 RL 70.0 9135 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 6 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 120.0 Gd TA PConc Gd TA Av GLQ 340.0 Unf 0.0 1342.0 1682.0 GasA ... Y SBrkr 1700 0 0 1700 1.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2003.0 RFn 2.0 544.0 TA TA Y 192 23 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 200000.0
1208 1209 20 RL 70.0 7763 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1962 1980 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No Rec 504.0 BLQ 108.0 319.0 931.0 GasA ... Y SBrkr 1283 0 0 1283 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1980.0 Unf 2.0 506.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2008 WD Normal 140000.0
1209 1210 20 RL 85.0 10182 Pave NaN IR1 Lvl AllPub CulDSac Gtl Somerst RRNn Norm 1Fam 1Story 8 5 2006 2006 Hip CompShg VinylSd VinylSd Stone 420.0 Gd TA PConc Ex TA Mn GLQ 1220.0 Unf 0.0 440.0 1660.0 GasA ... Y SBrkr 1660 0 0 1660 1.0 0.0 2 0 3 1 Gd 8 Typ 1 Gd Attchd 2006.0 RFn 2.0 500.0 TA TA Y 322 50 0 0 0 0 NaN NaN NaN 0 5 2006 New Partial 290000.0
1210 1211 60 RL 70.0 11218 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 6 5 1992 1992 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1055.0 1055.0 GasA ... Y SBrkr 1055 790 0 1845 0.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1992.0 RFn 2.0 462.0 TA TA Y 635 104 0 0 0 0 NaN GdPrv Shed 400 5 2010 WD Normal 189000.0
1211 1212 50 RL 152.0 12134 Pave NaN IR1 Bnk AllPub Inside Mod Gilbert Norm Norm 1Fam 1.5Fin 8 7 1988 2005 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd TA Wood Gd TA Av GLQ 427.0 Unf 0.0 132.0 559.0 GasA ... Y SBrkr 1080 672 0 1752 0.0 0.0 2 0 4 1 TA 8 Typ 0 NaN Basment 1988.0 RFn 2.0 492.0 TA TA Y 325 12 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 164000.0
1212 1213 30 RL 50.0 9340 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 6 1941 1950 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 344.0 Unf 0.0 328.0 672.0 GasA ... Y SBrkr 672 0 0 672 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1941.0 Unf 1.0 234.0 TA TA N 0 113 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal 113000.0
1213 1214 80 RL NaN 10246 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer Norm Norm 1Fam SLvl 4 9 1965 2001 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA Gd Av GLQ 648.0 Unf 0.0 0.0 648.0 GasA ... Y SBrkr 960 0 0 960 1.0 1.0 0 0 0 1 TA 3 Typ 0 NaN Attchd 1965.0 Unf 1.0 364.0 TA TA Y 88 0 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 145000.0
1214 1215 85 RL 69.0 10205 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SFoyer 5 5 1962 1962 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA Av BLQ 784.0 Unf 0.0 141.0 925.0 GasA ... Y SBrkr 999 0 0 999 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1962.0 Unf 1.0 300.0 TA TA Y 150 72 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 134500.0
1215 1216 20 RL 99.0 7094 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1966 1966 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No Rec 180.0 LwQ 374.0 340.0 894.0 GasA ... Y SBrkr 894 0 0 894 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1966.0 RFn 1.0 384.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 5 2007 WD Normal 125000.0
1216 1217 90 RM 68.0 8930 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer RRAe Norm Duplex 1.5Fin 6 5 1978 1978 Gable CompShg VinylSd VinylSd None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1318 584 0 1902 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Attchd 1978.0 Unf 2.0 539.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 112000.0
1217 1218 20 FV 72.0 8640 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2009 2009 Gable CompShg CemntBd CmentBd Stone 72.0 Gd TA PConc Gd TA Mn GLQ 936.0 Unf 0.0 364.0 1300.0 GasA ... Y SBrkr 1314 0 0 1314 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2009.0 RFn 2.0 552.0 TA TA Y 135 112 0 0 0 0 NaN NaN NaN 0 9 2009 New Partial 229456.0
1218 1219 50 RM 52.0 6240 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 4 5 1947 1950 Gable CompShg AsbShng AsbShng None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N SBrkr 672 240 0 912 0.0 0.0 1 0 2 1 TA 3 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 80500.0
1219 1220 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 5 1971 1971 Gable CompShg CemntBd CmentBd BrkFace 236.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 672.0 672.0 GasA ... Y SBrkr 672 546 0 1218 0.0 0.0 1 1 3 1 TA 7 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 201 0 0 0 0 0 NaN NaN NaN 0 4 2006 WD Abnorml 91500.0
1220 1221 20 RL 66.0 7800 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1964 1964 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 312.0 LwQ 600.0 0.0 912.0 GasA ... Y SBrkr 912 0 0 912 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1964.0 Unf 1.0 288.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2006 WD Abnorml 115000.0
1221 1222 20 RL 55.0 8250 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Feedr Norm 1Fam 1Story 5 5 1968 1968 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No BLQ 250.0 LwQ 492.0 210.0 952.0 GasA ... Y SBrkr 1211 0 0 1211 0.0 0.0 1 0 3 1 TA 5 Typ 1 TA Attchd 1968.0 Unf 1.0 322.0 TA TA Y 0 63 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 134000.0
1222 1223 50 RL 78.0 10496 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Artery Norm 1Fam 1.5Fin 6 6 1949 1950 Gable CompShg Wd Sdng Wd Sdng BrkFace 320.0 TA TA CBlock TA TA Mn Rec 196.0 Unf 0.0 844.0 1040.0 GasA ... Y SBrkr 1168 678 0 1846 0.0 0.0 2 0 3 1 TA 7 Typ 1 Gd Attchd 1949.0 Unf 1.0 315.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 1 2007 WD Normal 143000.0
1223 1224 20 RL 89.0 10680 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 3 1951 1951 Hip CompShg Wd Sdng Wd Sdng BrkFace 44.0 TA TA CBlock TA Fa No LwQ 756.0 Unf 0.0 1380.0 2136.0 GasA ... N FuseA 2136 0 0 2136 0.0 0.0 2 0 4 1 TA 7 Mod 0 NaN Detchd 1951.0 Unf 2.0 528.0 TA TA Y 0 30 0 0 0 0 NaN MnPrv NaN 0 10 2006 WD Normal 137900.0
1224 1225 60 RL 60.0 15384 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert RRAn Norm 1Fam 2Story 7 5 2004 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 724.0 Unf 0.0 64.0 788.0 GasA ... Y SBrkr 788 702 0 1490 1.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2004.0 Fin 2.0 388.0 TA TA Y 100 75 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal 184000.0
1225 1226 80 RL 65.0 10482 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 6 8 1958 1958 Hip CompShg VinylSd VinylSd BrkFace 63.0 TA Gd CBlock TA TA Av GLQ 507.0 Unf 0.0 81.0 588.0 GasA ... Y SBrkr 1138 0 0 1138 0.0 1.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1958.0 RFn 1.0 264.0 TA TA Y 224 0 0 0 0 0 NaN MnWw NaN 0 6 2007 WD Normal 145000.0
1226 1227 60 RL 86.0 14598 Pave NaN IR1 Lvl AllPub CulDSac Gtl Somerst Feedr Norm 1Fam 2Story 6 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 74.0 Gd TA PConc Gd TA Mn Unf 0.0 Unf 0.0 894.0 894.0 GasA ... Y SBrkr 894 1039 0 1933 0.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd BuiltIn 2007.0 Fin 3.0 668.0 TA TA Y 100 18 0 0 0 0 NaN NaN NaN 0 1 2008 WD Normal 214000.0
1227 1228 20 RL 72.0 8872 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 8 1965 2008 Gable CompShg VinylSd VinylSd BrkFace 300.0 TA TA CBlock TA TA No ALQ 595.0 Unf 0.0 317.0 912.0 GasA ... Y SBrkr 912 0 0 912 1.0 0.0 1 0 2 1 Gd 5 Typ 0 NaN Detchd 1992.0 Unf 2.0 576.0 TA TA Y 0 240 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal 147000.0
1228 1229 120 RL 65.0 8769 Pave NaN Reg Lvl AllPub Corner Gtl NridgHt Norm Norm TwnhsE 1Story 9 5 2008 2008 Hip CompShg MetalSd MetalSd BrkFace 766.0 Ex TA PConc Ex TA No GLQ 1540.0 Unf 0.0 162.0 1702.0 GasA ... Y SBrkr 1702 0 0 1702 1.0 0.0 1 1 1 1 Ex 7 Typ 1 Gd Attchd 2008.0 Fin 3.0 1052.0 TA TA Y 0 72 0 0 224 0 NaN NaN NaN 0 10 2008 New Partial 367294.0
1229 1230 80 RL 70.0 7910 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 5 5 1960 1960 Hip CompShg BrkFace HdBoard None 0.0 TA TA CBlock TA TA No ALQ 666.0 Unf 0.0 409.0 1075.0 GasA ... Y SBrkr 1507 0 0 1507 0.0 0.0 2 0 4 1 TA 7 Maj1 0 NaN Basment 1960.0 Unf 1.0 404.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 8 2008 WD Normal 127000.0
1230 1231 90 RL NaN 18890 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Feedr RRAe Duplex 1.5Fin 5 5 1977 1977 Shed CompShg Plywood Plywood None 1.0 TA TA CBlock Gd TA No GLQ 498.0 Rec 211.0 652.0 1361.0 GasA ... Y SBrkr 1361 1259 0 2620 0.0 0.0 2 2 4 2 TA 12 Typ 1 TA BuiltIn 1977.0 RFn 2.0 600.0 TA TA N 155 24 145 0 0 0 NaN NaN Gar2 8300 8 2007 WD Normal 190000.0
1231 1232 90 RL 70.0 7728 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm Duplex SLvl 5 6 1962 1962 Hip CompShg Wd Sdng Wd Sdng BrkFace 120.0 TA TA CBlock TA TA Av ALQ 803.0 Unf 0.0 303.0 1106.0 GasA ... Y SBrkr 1190 0 0 1190 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1962.0 Unf 2.0 540.0 TA TA Y 0 18 0 0 0 0 NaN GdWo NaN 0 5 2006 WD Normal 132500.0
1232 1233 90 RL 70.0 9842 Pave NaN Reg Lvl AllPub FR2 Gtl NAmes Norm Norm Duplex 1Story 4 5 1962 1962 Gable CompShg HdBoard HdBoard None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1224 0 0 1224 0.0 0.0 2 0 2 2 TA 6 Typ 0 NaN CarPort 1962.0 Unf 2.0 462.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal 101800.0
1233 1234 20 RL NaN 12160 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1959 1959 Hip CompShg Plywood Plywood BrkFace 180.0 TA TA CBlock TA TA No Rec 1000.0 Unf 0.0 188.0 1188.0 GasA ... Y SBrkr 1188 0 0 1188 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1959.0 RFn 2.0 531.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 5 2010 COD Abnorml 142000.0
1234 1235 70 RH 55.0 8525 Pave NaN Reg Bnk AllPub Inside Gtl SWISU Norm Norm 1Fam 2Story 5 6 1911 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA Av Unf 0.0 Unf 0.0 940.0 940.0 GasA ... N FuseA 1024 940 0 1964 0.0 0.0 1 1 4 1 TA 7 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 192 0 0 0 0 NaN NaN NaN 0 11 2008 WD Abnorml 130000.0
1235 1236 70 RL 96.0 13132 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 5 5 1914 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Gd TA Mn Unf 0.0 Unf 0.0 747.0 747.0 GasA ... Y FuseF 892 892 0 1784 0.0 0.0 1 1 4 1 TA 9 Typ 0 NaN Detchd 1914.0 Unf 1.0 180.0 Fa Fa N 203 40 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 138887.0
1236 1237 160 RL 36.0 2628 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm Twnhs 2Story 7 5 2003 2003 Gable CompShg VinylSd Wd Shng Stone 106.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 764.0 764.0 GasA ... Y SBrkr 764 862 0 1626 0.0 0.0 2 1 2 1 Gd 6 Typ 0 NaN BuiltIn 2003.0 RFn 2.0 474.0 TA TA Y 0 27 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 175500.0
1237 1238 60 RL 41.0 12393 Pave NaN IR2 Lvl AllPub FR2 Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2004 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 847.0 847.0 GasA ... Y SBrkr 847 1101 0 1948 0.0 0.0 2 1 4 1 Gd 8 Typ 1 Gd BuiltIn 2004.0 Fin 2.0 434.0 TA TA Y 100 48 0 0 0 0 NaN NaN NaN 0 9 2006 WD Normal 195000.0
1238 1239 20 RL 63.0 13072 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW RRAe Norm 1Fam 1Story 6 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1141.0 1141.0 GasA ... Y SBrkr 1141 0 0 1141 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 2005.0 Unf 2.0 484.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2006 WD Abnorml 142500.0
1239 1240 20 RL 64.0 9037 Pave NaN IR1 HLS AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2006 2006 Hip CompShg VinylSd VinylSd BrkFace 32.0 Gd TA PConc Gd TA Av GLQ 428.0 Unf 0.0 1048.0 1476.0 GasA ... Y SBrkr 1484 0 0 1484 0.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2006.0 RFn 2.0 472.0 TA TA Y 120 33 0 0 0 0 NaN NaN NaN 0 12 2007 WD Normal 265900.0
1240 1241 60 RL 65.0 8158 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 252.0 Gd TA PConc Gd TA No GLQ 550.0 Unf 0.0 334.0 884.0 GasA ... Y SBrkr 884 884 0 1768 1.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 2003.0 RFn 2.0 543.0 TA TA Y 0 63 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 224900.0
1241 1242 20 RL 83.0 9849 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 6 2007 2007 Hip CompShg VinylSd VinylSd Stone 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1689.0 1689.0 GasA ... Y SBrkr 1689 0 0 1689 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2007.0 RFn 3.0 954.0 TA TA Y 0 56 0 0 0 0 NaN NaN NaN 0 6 2007 New Partial 248328.0
1242 1243 85 RL 85.0 10625 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam SFoyer 7 6 1974 1974 Gable CompShg Plywood Plywood BrkFace 81.0 TA TA CBlock Gd TA Gd GLQ 885.0 LwQ 168.0 0.0 1053.0 GasA ... Y SBrkr 1173 0 0 1173 1.0 0.0 2 0 3 1 Gd 6 Typ 2 TA Attchd 1974.0 RFn 2.0 528.0 TA TA Y 0 120 0 0 0 0 NaN MnPrv NaN 0 1 2010 WD Family 170000.0
1243 1244 20 RL 107.0 13891 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 10 5 2006 2006 Gable CompShg VinylSd VinylSd NaN NaN Ex TA PConc Ex Gd Gd GLQ 1386.0 Unf 0.0 690.0 2076.0 GasA ... Y SBrkr 2076 0 0 2076 1.0 0.0 2 1 2 1 Ex 7 Typ 1 Gd Attchd 2006.0 Fin 3.0 850.0 TA TA Y 216 229 0 0 0 0 NaN NaN NaN 0 9 2006 New Partial 465000.0
1244 1245 70 RL NaN 11435 Pave NaN IR1 HLS AllPub Corner Mod Crawfor Norm Norm 1Fam 2Story 8 7 1929 1950 Gable CompShg BrkFace Stucco None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 792.0 792.0 GasA ... Y SBrkr 792 725 0 1517 0.0 0.0 1 0 3 1 Gd 7 Typ 2 Gd Detchd 1931.0 Unf 2.0 400.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 230000.0
1245 1246 80 RL 78.0 12090 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam SLvl 6 7 1984 2003 Hip CompShg VinylSd VinylSd BrkFace 74.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 585.0 585.0 GasA ... Y SBrkr 1140 728 0 1868 0.0 0.0 3 1 3 1 TA 7 Typ 1 TA BuiltIn 1984.0 Fin 2.0 477.0 TA TA Y 268 112 0 0 147 0 NaN NaN NaN 0 1 2007 WD Abnorml 178000.0
1246 1247 60 FV 65.0 8125 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 756.0 756.0 GasA ... Y SBrkr 756 797 0 1553 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2005.0 RFn 2.0 615.0 TA TA Y 0 45 0 0 0 0 NaN NaN NaN 0 3 2006 New Partial 186500.0
1247 1248 80 RL NaN 12328 Pave NaN IR1 Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam SLvl 6 5 1976 1976 Gable CompShg HdBoard HdBoard BrkFace 335.0 TA TA CBlock TA TA Av GLQ 539.0 Unf 0.0 473.0 1012.0 GasA ... Y SBrkr 1034 0 0 1034 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1976.0 Unf 3.0 888.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 169900.0
1248 1249 75 RM 60.0 9600 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2.5Unf 6 5 1917 1950 Gable CompShg AsbShng AsbShng None 0.0 TA TA BrkTil Gd TA No Rec 319.0 Unf 0.0 416.0 735.0 OthW ... N SBrkr 1134 924 0 2058 0.0 0.0 1 1 3 1 TA 8 Typ 1 Gd Detchd 1950.0 Unf 2.0 396.0 Fa Fa P 0 0 259 0 0 0 NaN NaN NaN 0 4 2008 WD Normal 129500.0
1249 1250 20 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1950 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No BLQ 534.0 Rec 96.0 246.0 876.0 GasA ... Y SBrkr 988 0 0 988 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1950.0 Unf 1.0 276.0 TA TA Y 0 80 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 119000.0
1250 1251 20 RL 93.0 11160 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 7 5 1968 1968 Hip CompShg BrkFace BrkFace None 0.0 Gd TA CBlock TA TA No ALQ 1065.0 Unf 0.0 1045.0 2110.0 GasA ... Y SBrkr 2110 0 0 2110 1.0 0.0 2 1 3 1 Ex 8 Typ 2 TA Attchd 1968.0 Fin 2.0 522.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 244000.0
1251 1252 120 RL NaN 3136 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm TwnhsE 1Story 7 5 2003 2003 Gable CompShg VinylSd Wd Shng Stone 163.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1405.0 1405.0 GasA ... Y SBrkr 1405 0 0 1405 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2003.0 RFn 2.0 478.0 TA TA Y 148 36 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal 171750.0
1252 1253 20 RL 62.0 9858 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 6 1968 1968 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No BLQ 510.0 Unf 0.0 354.0 864.0 GasA ... Y SBrkr 874 0 0 874 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1968.0 RFn 1.0 288.0 TA TA Y 33 0 0 0 0 0 NaN GdWo Shed 600 11 2009 WD Normal 130000.0
1253 1254 60 RL NaN 17542 Pave NaN IR1 Lvl AllPub Inside Gtl Veenker Norm Norm 1Fam 2Story 7 7 1974 2003 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd TA CBlock TA TA Gd LwQ 125.0 ALQ 1031.0 36.0 1192.0 GasA ... Y SBrkr 1516 651 0 2167 1.0 0.0 2 1 3 1 Gd 9 Typ 2 Gd Attchd 1974.0 RFn 2.0 518.0 TA TA Y 220 47 0 0 0 0 NaN MnPrv NaN 0 7 2007 WD Normal 294000.0
1254 1255 60 RL 60.0 6931 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 2Story 7 5 2003 2004 Gable CompShg VinylSd VinylSd Stone 92.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 746.0 746.0 GasA ... Y SBrkr 760 896 0 1656 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd BuiltIn 2003.0 Fin 2.0 397.0 TA TA Y 178 128 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 165400.0
1255 1256 50 RM 52.0 6240 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 6 1931 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA Fa No LwQ 425.0 Unf 0.0 459.0 884.0 GasA ... Y FuseA 959 408 0 1367 0.0 0.0 1 0 3 1 TA 6 Typ 1 Gd Detchd 1978.0 Unf 1.0 560.0 TA TA Y 0 0 0 0 120 0 NaN NaN NaN 0 11 2007 WD Normal 127500.0
1256 1257 20 RL 91.0 14303 Pave NaN IR1 Lvl AllPub Corner Gtl NoRidge Norm Norm 1Fam 1Story 8 5 1994 1994 Hip CompShg HdBoard HdBoard BrkFace 554.0 Gd TA PConc Gd TA Gd GLQ 1314.0 Unf 0.0 672.0 1986.0 GasA ... Y SBrkr 1987 0 0 1987 1.0 0.0 2 0 2 1 Gd 7 Typ 1 TA Attchd 1994.0 Fin 2.0 691.0 TA TA Y 262 36 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 301500.0
1257 1258 30 RL 56.0 4060 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Feedr Norm 1Fam 1Story 5 8 1922 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc Fa TA No Unf 0.0 Unf 0.0 864.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 96 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 99900.0
1258 1259 80 RL 59.0 9587 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam SLvl 7 5 2005 2005 Gable CompShg VinylSd VinylSd Stone 182.0 Gd TA PConc Gd TA Gd GLQ 655.0 Unf 0.0 201.0 856.0 GasA ... Y SBrkr 1166 0 0 1166 1.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 2005.0 Fin 2.0 400.0 TA TA Y 212 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 190000.0
1259 1260 20 RL 65.0 9750 Pave NaN Reg Lvl AllPub FR2 Gtl NAmes Norm Norm 1Fam 1Story 6 8 1969 1969 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA No ALQ 602.0 LwQ 438.0 14.0 1054.0 GasA ... Y SBrkr 1054 0 0 1054 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1969.0 Unf 2.0 460.0 TA TA Y 180 0 0 0 80 0 NaN NaN NaN 0 7 2008 WD Normal 151000.0
1260 1261 60 RL NaN 24682 Pave NaN IR3 Lvl AllPub CulDSac Gtl Gilbert RRAn Norm 1Fam 2Story 6 5 1999 1999 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 841.0 841.0 GasA ... Y SBrkr 892 783 0 1675 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA BuiltIn 1999.0 Fin 2.0 502.0 TA TA Y 0 103 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 181000.0
1261 1262 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1956 1956 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 504.0 Unf 0.0 546.0 1050.0 GasA ... Y SBrkr 1050 0 0 1050 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1956.0 Unf 1.0 338.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 128900.0
1262 1263 50 RL NaN 11250 Pave NaN Reg Lvl AllPub Inside Gtl ClearCr Norm Norm 1Fam 1.5Fin 4 5 1957 1989 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Av Unf 0.0 Unf 0.0 1104.0 1104.0 GasA ... Y FuseA 1104 684 0 1788 1.0 0.0 1 0 5 1 TA 8 Min2 2 TA Attchd 1957.0 Unf 1.0 304.0 TA TA Y 120 0 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal 161500.0
1263 1264 70 RL 60.0 13515 Pave Pave Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 2Story 6 6 1919 1950 Gambrel CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 764.0 764.0 GasA ... Y FuseA 1060 764 0 1824 0.0 0.0 1 0 3 1 TA 8 Typ 1 Gd Detchd 1940.0 Unf 2.0 520.0 TA TA N 0 0 126 0 0 0 NaN GdPrv NaN 0 7 2007 WD Normal 180500.0
1264 1265 120 RH 34.0 4060 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm TwnhsE 1Story 6 5 1998 1999 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No GLQ 266.0 Unf 0.0 1139.0 1405.0 GasA ... Y SBrkr 1337 0 0 1337 1.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 1998.0 Fin 2.0 511.0 TA TA Y 144 68 0 0 0 0 NaN NaN NaN 0 8 2008 COD Abnorml 181000.0
1265 1266 160 FV 35.0 3735 Pave NaN Reg Lvl AllPub FR3 Gtl Somerst Norm Norm TwnhsE 2Story 7 5 1999 1999 Hip CompShg MetalSd MetalSd BrkFace 218.0 Gd TA PConc Gd TA No GLQ 450.0 Unf 0.0 241.0 691.0 GasA ... Y SBrkr 713 739 0 1452 1.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Detchd 1999.0 Unf 2.0 506.0 TA TA Y 0 34 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal 183900.0
1266 1267 190 RM 60.0 10120 Pave NaN IR1 Bnk AllPub Inside Gtl OldTown Feedr Norm 2fmCon 2.5Unf 7 4 1910 1950 Hip CompShg Wd Sdng Wd Sdng None 0.0 Fa TA CBlock TA TA No Unf 0.0 Unf 0.0 925.0 925.0 GasA ... N FuseF 964 925 0 1889 0.0 0.0 1 1 4 2 TA 9 Typ 1 Gd Detchd 1960.0 Unf 1.0 308.0 TA TA N 0 0 264 0 0 0 NaN MnPrv NaN 0 1 2007 WD Normal 122000.0
1267 1268 20 RL 89.0 13214 Pave NaN IR1 HLS AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 9 5 2008 2009 Hip CompShg Stucco CmentBd None 0.0 Ex TA PConc Ex TA Gd Unf 0.0 Unf 0.0 2002.0 2002.0 GasA ... Y SBrkr 2018 0 0 2018 0.0 0.0 2 0 3 1 Ex 10 Typ 1 Gd Attchd 2009.0 Fin 3.0 746.0 TA TA Y 144 76 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 378500.0
1268 1269 50 RL NaN 14100 Pave NaN IR1 Lvl AllPub Inside Mod Crawfor Norm Norm 1Fam 1.5Fin 8 9 1935 1997 Gable CompShg Stucco Stucco BrkFace 632.0 TA Gd CBlock TA TA Mn Rec 192.0 Unf 0.0 536.0 728.0 GasA ... Y SBrkr 1968 1479 0 3447 0.0 0.0 3 1 4 1 Gd 11 Typ 2 Gd BuiltIn 1982.0 Unf 3.0 1014.0 TA TA Y 314 12 0 0 0 0 NaN GdWo NaN 0 5 2008 WD Normal 381000.0
1269 1270 50 RL 78.0 11344 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam 1.5Fin 5 5 1958 1958 Gable CompShg MetalSd MetalSd BrkFace 180.0 TA TA CBlock TA TA No BLQ 460.0 Unf 0.0 414.0 874.0 GasW ... Y FuseA 874 650 0 1524 0.0 0.0 1 1 3 1 TA 7 Typ 0 NaN Attchd 1958.0 Unf 1.0 315.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 7 2007 WD Normal 144000.0
1270 1271 40 RL NaN 23595 Pave NaN Reg Low AllPub Inside Sev ClearCr Norm Norm 1Fam 1Story 7 6 1979 1979 Shed WdShake Plywood Plywood None 0.0 Gd TA PConc Gd TA Gd GLQ 1258.0 Unf 0.0 74.0 1332.0 GasA ... Y SBrkr 1332 192 0 1524 2.0 0.0 0 1 0 1 Gd 4 Typ 1 TA Attchd 1979.0 Fin 2.0 586.0 TA TA Y 268 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 260000.0
1271 1272 20 RL NaN 9156 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes PosN Norm 1Fam 1Story 6 7 1968 1968 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1489.0 1489.0 GasA ... Y SBrkr 1489 0 0 1489 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 1968.0 RFn 2.0 462.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal 185750.0
1272 1273 20 RL NaN 13526 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer Norm Norm 1Fam 1Story 5 6 1965 1965 Hip CompShg HdBoard Plywood BrkFace 114.0 TA TA CBlock TA TA No BLQ 560.0 LwQ 375.0 0.0 935.0 GasA ... Y SBrkr 935 0 0 935 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1965.0 Unf 1.0 288.0 TA TA Y 180 0 0 0 0 0 NaN MnPrv NaN 0 11 2006 WD Normal 137000.0
1273 1274 80 RL 124.0 11512 Pave NaN IR1 Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam SLvl 6 7 1959 2006 Gable CompShg Plywood Plywood BrkFace 84.0 TA TA CBlock TA TA Av ALQ 719.0 Unf 0.0 300.0 1019.0 GasA ... Y SBrkr 1357 0 0 1357 1.0 0.0 1 0 2 1 Ex 5 Typ 1 Gd Basment 1959.0 RFn 1.0 312.0 TA TA Y 0 0 0 0 163 0 NaN GdPrv NaN 0 5 2008 WD Normal 177000.0
1274 1275 50 RL 53.0 5362 Pave NaN Reg Lvl AllPub Corner Gtl Crawfor Norm Norm 1Fam 1.5Fin 5 6 1910 2003 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 661.0 661.0 GasA ... Y SBrkr 661 589 0 1250 0.0 0.0 2 0 3 1 TA 8 Typ 1 Gd Detchd 1985.0 Unf 2.0 552.0 TA TA Y 242 0 81 0 0 0 NaN NaN NaN 0 11 2007 WD Normal 139000.0
1275 1276 90 RL 95.0 11345 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Feedr Norm Duplex 2Story 5 5 1948 1950 Gable Roll AsbShng AsbShng Stone 567.0 TA TA CBlock TA TA No Rec 220.0 Unf 0.0 708.0 928.0 GasA ... Y FuseA 928 992 0 1920 0.0 0.0 2 0 4 2 TA 10 Typ 0 NaN Detchd 1948.0 Unf 2.0 400.0 TA Fa Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 137000.0
1276 1277 60 RL NaN 12936 Pave NaN IR1 Lvl AllPub CulDSac Gtl NWAmes Norm Norm 1Fam 2Story 6 6 1972 1972 Gable CompShg HdBoard Plywood None 0.0 TA TA CBlock TA Gd No BLQ 593.0 Unf 0.0 130.0 723.0 GasA ... Y SBrkr 735 660 0 1395 0.0 1.0 1 1 3 1 TA 6 Typ 1 TA Attchd 1972.0 Unf 2.0 497.0 TA TA Y 294 116 0 0 0 0 NaN NaN NaN 0 12 2009 WD Normal 162000.0
1277 1278 80 RL NaN 17871 Pave NaN IR1 Lvl AllPub CulDSac Gtl NWAmes Norm Norm 1Fam SLvl 6 5 1967 1976 Gable CompShg HdBoard HdBoard BrkFace 359.0 TA TA CBlock Gd TA Av ALQ 528.0 Unf 0.0 1152.0 1680.0 GasA ... Y SBrkr 1724 0 0 1724 1.0 0.0 1 1 3 1 TA 7 Typ 1 Gd Attchd 1967.0 RFn 2.0 480.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 197900.0
1278 1279 60 RL 75.0 9473 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 8 5 2002 2002 Gable CompShg VinylSd VinylSd NaN NaN Gd TA PConc Gd TA No GLQ 804.0 Unf 0.0 324.0 1128.0 GasA ... Y SBrkr 1128 903 0 2031 1.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2002.0 RFn 2.0 577.0 TA TA Y 0 211 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal 237000.0
1279 1280 50 C (all) 60.0 7500 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 4 4 1920 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No Unf 0.0 Unf 0.0 698.0 698.0 GasA ... Y FuseA 698 430 0 1128 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1980.0 RFn 2.0 528.0 TA TA Y 30 0 164 0 0 0 NaN NaN NaN 0 4 2010 COD Abnorml 68400.0
1280 1281 20 RL 67.0 9808 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd BrkFace 110.0 Gd TA PConc Gd TA No GLQ 788.0 Unf 0.0 785.0 1573.0 GasA ... Y SBrkr 1573 0 0 1573 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2002.0 RFn 2.0 544.0 TA TA Y 0 72 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal 227000.0
1281 1282 20 RL 50.0 8049 Pave NaN IR1 Lvl AllPub CulDSac Gtl Timber Norm Norm 1Fam 1Story 7 5 1990 1990 Hip CompShg HdBoard HdBoard BrkFace 54.0 TA TA CBlock Gd TA No ALQ 1053.0 Unf 0.0 256.0 1309.0 GasA ... Y SBrkr 1339 0 0 1339 1.0 0.0 2 0 2 1 TA 6 Typ 1 TA Attchd 1990.0 Fin 2.0 484.0 Gd Gd Y 0 58 0 0 90 0 NaN NaN NaN 0 7 2006 WD Normal 180000.0
1282 1283 20 RL 61.0 8800 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 7 1977 2008 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA Mn LwQ 532.0 Rec 144.0 364.0 1040.0 GasA ... Y SBrkr 1040 0 0 1040 0.0 0.0 2 0 3 1 Gd 5 Typ 0 NaN Detchd 1977.0 Unf 2.0 484.0 TA TA Y 0 0 0 0 288 0 NaN NaN NaN 0 9 2009 WD Normal 150500.0
1283 1284 90 RL 94.0 9400 Pave NaN Reg Low AllPub Corner Gtl Mitchel Norm Norm Duplex 2Story 6 5 1971 1971 Mansard CompShg MetalSd Wd Shng None 0.0 TA TA CBlock TA TA Av Unf 0.0 Unf 0.0 912.0 912.0 GasA ... Y SBrkr 912 912 0 1824 0.0 0.0 2 2 4 2 TA 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 128 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 139000.0
1284 1285 50 RL 50.0 9638 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Feedr Norm 1Fam 1.5Fin 6 7 1919 1990 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 804.0 804.0 GasA ... Y SBrkr 1699 748 0 2447 0.0 0.0 2 0 4 1 Gd 10 Min2 1 Gd Detchd 1969.0 Unf 1.0 336.0 TA TA Y 272 0 42 0 116 0 NaN NaN NaN 0 3 2010 WD Normal 169000.0
1285 1286 50 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 6 1939 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Fa CBlock TA TA No Unf 0.0 Unf 0.0 780.0 780.0 GasA ... Y FuseF 825 587 0 1412 0.0 0.0 1 0 4 1 TA 6 Typ 1 Gd Detchd 1939.0 Unf 1.0 280.0 TA TA Y 45 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 132500.0
1286 1287 20 RL NaN 9790 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Feedr Norm 1Fam 1Story 6 5 1963 1963 Hip CompShg HdBoard HdBoard BrkFace 451.0 TA TA CBlock TA TA No ALQ 569.0 Rec 81.0 678.0 1328.0 GasA ... Y SBrkr 1328 0 0 1328 1.0 0.0 1 1 3 1 TA 6 Typ 2 Gd Attchd 1963.0 Unf 2.0 528.0 TA TA Y 0 26 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 143000.0
1287 1288 20 RL NaN 36500 Pave NaN IR1 Low AllPub Inside Mod ClearCr Norm Norm 1Fam 1Story 5 5 1964 1964 Gable CompShg Wd Sdng Wd Sdng BrkCmn 621.0 TA Gd CBlock TA TA Av Rec 812.0 Unf 0.0 812.0 1624.0 GasA ... Y SBrkr 1582 0 0 1582 0.0 1.0 2 0 4 1 TA 7 Typ 0 NaN Attchd 1964.0 Unf 2.0 390.0 TA TA N 168 198 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 190000.0
1288 1289 120 RL 40.0 5664 Pave NaN IR1 Lvl AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 2000 2000 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA No GLQ 1158.0 Unf 0.0 343.0 1501.0 GasA ... Y SBrkr 1659 0 0 1659 1.0 0.0 2 0 2 1 Ex 5 Typ 1 Ex Attchd 2000.0 Fin 2.0 499.0 TA TA Y 212 59 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal 278000.0
1289 1290 60 RL 86.0 11065 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd Stone 788.0 Gd TA PConc Gd TA Mn Unf 0.0 Unf 0.0 1085.0 1085.0 GasA ... Y SBrkr 1120 850 0 1970 0.0 0.0 2 1 3 1 Ex 8 Typ 1 Gd BuiltIn 2006.0 Fin 3.0 753.0 TA TA Y 177 74 0 0 0 0 NaN NaN NaN 0 10 2006 New Partial 281000.0
1290 1291 80 RL NaN 14112 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam SLvl 5 7 1964 1964 Hip CompShg Wd Sdng HdBoard BrkFace 86.0 TA TA PConc TA TA Av GLQ 1014.0 Unf 0.0 138.0 1152.0 GasA ... Y SBrkr 1152 0 0 1152 1.0 0.0 1 0 3 1 TA 6 Typ 1 Gd Attchd 1964.0 RFn 2.0 484.0 TA TA Y 227 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 180500.0
1291 1292 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 5 7 1972 1972 Gable CompShg CemntBd CmentBd BrkFace 268.0 TA TA CBlock TA TA No ALQ 231.0 Unf 0.0 399.0 630.0 GasA ... Y SBrkr 630 672 0 1302 0.0 0.0 2 1 3 1 TA 6 Typ 0 NaN Detchd 1972.0 Unf 1.0 264.0 TA TA Y 185 0 0 0 0 0 NaN NaN NaN 0 2 2009 WD Normal 119500.0
1292 1293 70 RM 60.0 6600 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 2Story 5 4 1892 1965 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA Stone TA TA No Unf 0.0 Unf 0.0 994.0 994.0 GasA ... N SBrkr 1378 994 0 2372 0.0 0.0 2 0 4 2 TA 11 Min2 0 NaN Attchd 1985.0 RFn 1.0 432.0 TA TA Y 0 287 0 0 0 0 NaN NaN NaN 0 12 2009 WD Normal 107500.0
1293 1294 60 RL 78.0 10140 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 7 5 1976 1976 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No GLQ 194.0 Unf 0.0 638.0 832.0 GasA ... Y SBrkr 832 832 0 1664 0.0 0.0 2 1 4 1 TA 8 Typ 1 TA Attchd 1976.0 RFn 2.0 528.0 TA TA Y 0 28 0 0 259 0 NaN GdWo NaN 0 3 2006 WD Normal 162900.0
1294 1295 20 RL 60.0 8172 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 7 1955 1990 Hip CompShg WdShing Plywood None 0.0 TA TA CBlock TA TA No Rec 167.0 Unf 0.0 697.0 864.0 GasA ... Y SBrkr 864 0 0 864 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1957.0 Unf 2.0 572.0 TA TA N 0 0 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 115000.0
1295 1296 20 RL 70.0 8400 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam 1Story 5 5 1968 1968 Hip CompShg HdBoard HdBoard BrkFace 168.0 TA TA CBlock TA TA Av BLQ 1016.0 Unf 0.0 36.0 1052.0 GasA ... Y SBrkr 1052 0 0 1052 1.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Attchd 1968.0 RFn 1.0 288.0 TA TA Y 356 0 0 0 0 0 NaN GdWo NaN 0 11 2006 WD Normal 138500.0
1296 1297 20 RL 80.0 8700 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1963 1963 Hip CompShg MetalSd MetalSd BrkFace 148.0 TA Gd CBlock TA TA Mn ALQ 776.0 Unf 0.0 344.0 1120.0 GasA ... Y SBrkr 1128 0 0 1128 1.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Attchd 1963.0 RFn 2.0 525.0 TA TA Y 192 20 123 0 0 0 NaN MnPrv NaN 0 12 2008 WD Normal 155000.0
1297 1298 180 RM 35.0 3675 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm TwnhsE SFoyer 6 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 82.0 TA TA PConc Gd TA Gd GLQ 547.0 Unf 0.0 0.0 547.0 GasA ... Y SBrkr 1072 0 0 1072 1.0 0.0 2 0 2 1 TA 5 Typ 0 NaN Basment 2005.0 Fin 2.0 525.0 TA TA Y 0 44 0 0 0 0 NaN NaN NaN 0 6 2006 New Partial 140000.0
1298 1299 60 RL 313.0 63887 Pave NaN IR3 Bnk AllPub Corner Gtl Edwards Feedr Norm 1Fam 2Story 10 5 2008 2008 Hip ClyTile Stucco Stucco Stone 796.0 Ex TA PConc Ex TA Gd GLQ 5644.0 Unf 0.0 466.0 6110.0 GasA ... Y SBrkr 4692 950 0 5642 2.0 0.0 2 1 3 1 Ex 12 Typ 3 Gd Attchd 2008.0 Fin 2.0 1418.0 TA TA Y 214 292 0 0 0 480 Gd NaN NaN 0 1 2008 New Partial 160000.0
1299 1300 20 RL 75.0 7500 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1959 1994 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No LwQ 340.0 Rec 906.0 0.0 1246.0 GasA ... Y SBrkr 1246 0 0 1246 1.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN Attchd 1959.0 RFn 1.0 305.0 TA TA Y 218 0 0 0 0 0 NaN GdPrv NaN 0 5 2010 WD Normal 154000.0
1300 1301 60 RL NaN 10762 Pave NaN IR1 Lvl AllPub CulDSac Gtl Gilbert Norm Norm 1Fam 2Story 7 5 1999 1999 Gable CompShg VinylSd VinylSd None 344.0 Gd TA PConc Gd TA No GLQ 694.0 Unf 0.0 284.0 978.0 GasA ... Y SBrkr 1005 978 0 1983 0.0 0.0 2 1 3 1 Gd 9 Typ 1 TA Attchd 1999.0 Fin 2.0 490.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 225000.0
1301 1302 70 RL NaN 7500 Pave NaN IR1 Bnk AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 6 7 1942 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No BLQ 547.0 Unf 0.0 224.0 771.0 GasA ... Y SBrkr 753 741 0 1494 0.0 0.0 1 0 3 1 Gd 7 Typ 2 Gd Attchd 1942.0 Unf 1.0 213.0 TA TA P 0 0 0 0 224 0 NaN NaN NaN 0 11 2009 WD Normal 177500.0
1302 1303 60 RL 92.0 10120 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1994 1994 Hip CompShg VinylSd VinylSd BrkFace 391.0 Gd TA PConc Gd TA No GLQ 740.0 Unf 0.0 425.0 1165.0 GasA ... Y SBrkr 1203 1323 0 2526 1.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Attchd 1994.0 RFn 3.0 844.0 TA TA Y 309 78 0 0 0 0 NaN NaN NaN 0 12 2006 WD Normal 290000.0
1303 1304 20 RL 73.0 8688 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd BrkFace 228.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1616.0 1616.0 GasA ... Y SBrkr 1616 0 0 1616 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2005.0 RFn 3.0 834.0 TA TA Y 208 59 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 232000.0
1304 1305 160 RM 32.0 3363 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm TwnhsE 2Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd Stone 117.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 976.0 976.0 GasA ... Y SBrkr 976 732 0 1708 0.0 0.0 2 0 3 1 Gd 7 Maj1 0 NaN Detchd 2004.0 Unf 2.0 380.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal 130000.0
1305 1306 20 RL 108.0 13173 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2006 2007 Hip CompShg VinylSd VinylSd Stone 300.0 Gd TA PConc Ex TA No GLQ 1572.0 Unf 0.0 80.0 1652.0 GasA ... Y SBrkr 1652 0 0 1652 1.0 0.0 2 0 2 1 Ex 6 Typ 2 Ex Attchd 2006.0 Fin 2.0 840.0 TA TA Y 404 102 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal 325000.0
1306 1307 120 RL 48.0 6955 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd Stone 94.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1368.0 1368.0 GasA ... Y SBrkr 1368 0 0 1368 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2005.0 RFn 2.0 474.0 TA TA Y 132 35 0 0 0 0 NaN NaN NaN 0 9 2006 New Partial 202500.0
1307 1308 20 RL 60.0 8072 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 5 1994 1995 Gable CompShg VinylSd VinylSd None 0.0 TA Gd PConc Gd Gd No ALQ 746.0 Unf 0.0 244.0 990.0 GasA ... Y SBrkr 990 0 0 990 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 2000.0 Unf 2.0 480.0 TA TA Y 0 64 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 138000.0
1308 1309 20 RM 100.0 12000 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 7 1948 2005 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No GLQ 144.0 ALQ 608.0 172.0 924.0 GasA ... Y SBrkr 1122 0 0 1122 1.0 0.0 1 0 2 1 Gd 6 Typ 0 NaN Attchd 1948.0 Unf 2.0 528.0 TA TA Y 0 36 0 0 0 0 NaN GdWo NaN 0 5 2008 WD Normal 147000.0
1309 1310 20 RL NaN 7153 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 6 5 1991 1991 Gable CompShg HdBoard HdBoard BrkFace 88.0 TA TA CBlock Gd TA No GLQ 1200.0 Unf 0.0 78.0 1278.0 GasA ... Y SBrkr 1294 0 0 1294 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1991.0 RFn 2.0 496.0 TA TA Y 112 51 0 0 0 0 NaN GdWo NaN 0 6 2008 WD Normal 179200.0
1310 1311 20 RL 100.0 17500 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor PosA Norm 1Fam 1Story 7 8 1959 2002 Gable CompShg BrkFace HdBoard None 0.0 Gd Gd PConc Gd TA Av GLQ 1406.0 Unf 0.0 496.0 1902.0 GasA ... Y SBrkr 1902 0 0 1902 1.0 0.0 2 0 3 1 Ex 7 Typ 2 TA Attchd 1959.0 Fin 2.0 567.0 TA TA Y 0 207 162 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 335000.0
1311 1312 20 RL 68.0 8814 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2005 2007 Gable CompShg VinylSd VinylSd BrkFace 80.0 Gd TA PConc Gd TA No GLQ 925.0 Unf 0.0 349.0 1274.0 GasA ... Y SBrkr 1274 0 0 1274 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2005.0 RFn 2.0 508.0 TA TA Y 264 98 0 0 0 0 NaN NaN NaN 0 1 2007 New Partial 203000.0
1312 1313 60 RL NaN 9572 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1990 1990 Gable CompShg Wd Sdng Wd Sdng BrkFace 336.0 Gd TA PConc Ex TA No GLQ 482.0 Unf 0.0 971.0 1453.0 GasA ... Y SBrkr 1453 1357 0 2810 0.0 0.0 2 1 4 1 Gd 9 Typ 1 Ex Attchd 1990.0 RFn 2.0 750.0 Gd Gd Y 500 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal 302000.0
1313 1314 60 RL 108.0 14774 Pave NaN IR1 Lvl AllPub Corner Gtl NoRidge Norm Norm 1Fam 2Story 9 5 1999 1999 Gable CompShg VinylSd VinylSd BrkFace 165.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1393.0 1393.0 GasA ... Y SBrkr 1422 1177 0 2599 0.0 0.0 2 1 4 1 Gd 10 Typ 1 TA BuiltIn 1999.0 Fin 3.0 779.0 TA TA Y 668 30 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 333168.0
1314 1315 20 RL 60.0 8190 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 6 1954 1954 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 732.0 Unf 0.0 216.0 948.0 GasA ... Y SBrkr 948 0 0 948 1.0 0.0 1 0 3 1 TA 5 Typ 1 TA Detchd 1956.0 Unf 1.0 280.0 TA TA Y 0 36 0 0 0 0 NaN NaN NaN 0 10 2007 WD Normal 119000.0
1315 1316 60 RL 85.0 11075 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 2Story 6 5 1969 1969 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Fa TA Mn ALQ 500.0 LwQ 276.0 176.0 952.0 GasA ... Y SBrkr 1092 1020 0 2112 0.0 0.0 2 1 4 1 TA 9 Typ 2 Gd Attchd 1969.0 Unf 2.0 576.0 TA TA Y 280 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 206900.0
1316 1317 20 RL 61.0 10226 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2008 2008 Gable CompShg VinylSd VinylSd Stone 270.0 Gd TA PConc Ex TA Gd Unf 0.0 Unf 0.0 1622.0 1622.0 GasA ... Y SBrkr 1630 0 0 1630 1.0 0.0 2 0 3 1 Ex 8 Typ 1 Gd Attchd 2008.0 RFn 3.0 860.0 TA TA Y 172 42 0 0 0 0 NaN NaN NaN 0 1 2009 WD Normal 295493.0
1317 1318 120 FV 47.0 4230 Pave Pave Reg Lvl AllPub Corner Gtl Somerst Norm Norm TwnhsE 1Story 7 5 2006 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex Gd No Unf 0.0 Unf 0.0 1352.0 1352.0 GasA ... Y SBrkr 1352 0 0 1352 0.0 0.0 2 0 2 1 Gd 5 Typ 1 Gd Attchd 2006.0 RFn 2.0 466.0 TA TA Y 0 241 0 0 0 0 NaN NaN NaN 0 4 2007 New Partial 208900.0
1318 1319 20 RL NaN 14781 Pave NaN IR2 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2001 2002 Hip CompShg VinylSd VinylSd BrkFace 178.0 Gd TA PConc Gd TA Gd Unf 0.0 Unf 0.0 1753.0 1753.0 GasA ... Y SBrkr 1787 0 0 1787 0.0 0.0 2 0 3 1 Gd 7 Typ 1 TA Attchd 2001.0 RFn 3.0 748.0 TA TA Y 198 150 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal 275000.0
1319 1320 20 RL 75.0 10215 Pave NaN Reg Bnk AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 5 1954 1954 Hip CompShg Wd Sdng Wd Sdng BrkFace 132.0 TA TA PConc TA TA No ALQ 492.0 Unf 0.0 372.0 864.0 GasA ... Y SBrkr 948 0 0 948 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1954.0 Unf 1.0 248.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 2 2007 WD Normal 111000.0
1320 1321 20 RL 70.0 8400 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 3 1957 1957 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No ALQ 189.0 Rec 661.0 628.0 1478.0 GasA ... Y SBrkr 1478 0 0 1478 1.0 0.0 1 1 3 1 TA 6 Typ 2 Gd Attchd 1957.0 RFn 2.0 442.0 TA TA Y 114 0 0 0 216 0 NaN NaN NaN 0 6 2009 WD Normal 156500.0
1321 1322 20 RL NaN 6627 Pave NaN IR1 Lvl AllPub Corner Gtl BrkSide Feedr Norm 1Fam 1Story 3 6 1949 1950 Hip CompShg VinylSd VinylSd None 0.0 TA TA CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 Floor ... N SBrkr 720 0 0 720 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1955.0 Unf 1.0 287.0 TA Fa Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 72500.0
1322 1323 60 RL 107.0 10186 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 7 5 1992 1992 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA No GLQ 674.0 Unf 0.0 76.0 750.0 GasA ... Y SBrkr 1061 862 0 1923 1.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1992.0 RFn 2.0 564.0 TA TA Y 240 39 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 190000.0
1323 1324 30 RL 50.0 5330 Pave NaN Reg HLS AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 4 7 1940 1950 Hip CompShg VinylSd VinylSd None 0.0 Fa TA CBlock TA TA No LwQ 280.0 Unf 0.0 140.0 420.0 GasA ... Y SBrkr 708 0 0 708 0.0 0.0 1 0 2 1 Fa 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 164 0 0 0 0 0 NaN NaN NaN 0 12 2009 WD Normal 82500.0
1324 1325 20 RL 75.0 9986 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2006 2007 Gable CompShg VinylSd VinylSd BrkFace 428.0 Gd TA PConc Ex TA Av Unf 0.0 Unf 0.0 1795.0 1795.0 GasA ... Y SBrkr 1795 0 0 1795 0.0 0.0 2 0 2 1 Gd 7 Typ 1 Gd Attchd 2007.0 RFn 3.0 895.0 TA TA Y 0 49 0 0 0 0 NaN NaN NaN 0 2 2007 New Partial 147000.0
1325 1326 30 RM 40.0 3636 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 4 4 1922 1950 Gable CompShg AsbShng AsbShng None 0.0 TA TA BrkTil TA Fa No Unf 0.0 Unf 0.0 796.0 796.0 GasA ... N SBrkr 796 0 0 796 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 100 0 0 0 NaN MnPrv NaN 0 1 2008 WD Normal 55000.0
1326 1327 30 RH 70.0 4270 Pave NaN Reg Bnk AllPub Inside Mod Edwards Norm Norm 1Fam 1Story 3 6 1931 2006 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Rec 544.0 Unf 0.0 0.0 544.0 GasA ... Y SBrkr 774 0 0 774 0.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 286 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 79000.0
1327 1328 20 RL 60.0 6600 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 9 1982 2008 Gable CompShg VinylSd VinylSd None 0.0 Gd Gd CBlock TA TA No ALQ 641.0 Unf 0.0 175.0 816.0 GasA ... Y SBrkr 816 0 0 816 0.0 1.0 1 0 3 1 Gd 5 Typ 1 Ex Attchd 1982.0 Unf 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 10 2008 WD Normal 130500.0
1328 1329 50 RM 60.0 10440 Pave Grvl Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1.5Fin 6 7 1920 1950 Gable CompShg BrkFace Wd Sdng None 0.0 Gd Gd BrkTil Gd TA No LwQ 493.0 Unf 0.0 1017.0 1510.0 GasW ... Y SBrkr 1584 1208 0 2792 0.0 0.0 2 0 5 1 TA 8 Mod 2 TA Detchd 1920.0 Unf 2.0 520.0 Fa TA Y 0 547 0 0 480 0 NaN MnPrv Shed 1150 6 2008 WD Normal 256000.0
1329 1330 60 RL 63.0 9084 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 1998 1998 Hip CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 935.0 935.0 GasA ... Y SBrkr 955 677 0 1632 0.0 0.0 2 1 3 1 TA 8 Typ 1 TA Attchd 1998.0 Fin 2.0 462.0 TA TA Y 0 28 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 176500.0
1330 1331 20 RL 85.0 10000 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2006 2006 Hip CompShg VinylSd VinylSd Stone 410.0 Gd TA PConc Gd Gd Av Unf 0.0 Unf 0.0 1588.0 1588.0 GasA ... Y SBrkr 1588 0 0 1588 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 RFn 3.0 825.0 TA TA Y 144 45 0 0 0 0 NaN NaN NaN 0 12 2007 WD Normal 227000.0
1331 1332 80 RL 55.0 10780 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam SLvl 5 5 1976 1976 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA Av ALQ 483.0 Unf 0.0 428.0 911.0 GasA ... Y SBrkr 954 0 0 954 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1976.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 132500.0
1332 1333 20 RL 67.0 8877 Pave NaN Reg Lvl AllPub Inside Mod Edwards Norm Norm 1Fam 1Story 4 6 1938 1958 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA Mn ALQ 690.0 Unf 0.0 126.0 816.0 GasA ... Y SBrkr 816 0 0 816 1.0 0.0 1 0 2 1 TA 3 Typ 1 Gd Detchd 1958.0 Unf 1.0 288.0 Fa Fa Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 100000.0
1333 1334 50 RM 60.0 7200 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Norm Norm 1Fam 1.5Fin 5 6 1938 1995 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 803.0 803.0 GasA ... Y SBrkr 803 557 0 1360 0.0 0.0 1 1 2 1 Gd 6 Typ 0 NaN Detchd 1951.0 Unf 1.0 297.0 TA TA Y 0 65 190 0 0 0 NaN MnPrv NaN 0 7 2006 WD Normal 125500.0
1334 1335 160 RM 24.0 2368 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm TwnhsE 2Story 5 6 1970 1970 Gable CompShg HdBoard HdBoard None 312.0 TA TA CBlock TA TA No LwQ 765.0 Unf 0.0 0.0 765.0 GasA ... Y SBrkr 765 600 0 1365 0.0 0.0 1 1 3 1 TA 7 Min1 0 NaN Attchd 1970.0 Unf 2.0 440.0 TA TA Y 0 36 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 125000.0
1335 1336 20 RL 80.0 9650 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 5 1977 1977 Gable CompShg Plywood Plywood BrkFace 360.0 TA TA CBlock Gd TA No ALQ 686.0 Unf 0.0 664.0 1350.0 GasA ... Y SBrkr 1334 0 0 1334 0.0 1.0 2 0 2 1 TA 6 Typ 1 TA Attchd 1977.0 RFn 2.0 630.0 TA TA Y 0 16 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal 167900.0
1336 1337 90 RL 87.0 9246 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Feedr Norm Duplex 1Story 5 5 1973 1973 Gable CompShg Plywood Plywood BrkFace 564.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1656.0 1656.0 GasA ... Y SBrkr 1656 0 0 1656 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Detchd 1973.0 Unf 2.0 506.0 TA TA Y 0 211 0 0 0 0 NaN NaN NaN 0 11 2008 WD Normal 135000.0
1337 1338 30 RM 153.0 4118 Pave Grvl IR1 Bnk AllPub Corner Mod OldTown Feedr Norm 1Fam 1Story 4 4 1941 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 693.0 693.0 Grav ... N FuseA 693 0 0 693 0.0 0.0 1 0 2 1 Fa 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 20 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal 52500.0
1338 1339 60 RL 95.0 13450 Pave NaN IR1 Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 700.0 Unf 0.0 216.0 916.0 GasA ... Y SBrkr 920 941 0 1861 1.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN BuiltIn 2002.0 RFn 2.0 492.0 TA TA Y 146 91 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 200000.0
1339 1340 20 RL 120.0 9560 Pave NaN IR1 Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 5 7 1972 1972 Hip CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA Mn Rec 360.0 Unf 0.0 504.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1972.0 RFn 1.0 288.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 128500.0
1340 1341 20 RL 70.0 8294 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 4 5 1971 1971 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 858.0 858.0 GasA ... Y SBrkr 872 0 0 872 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1974.0 Unf 4.0 480.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 6 2007 WD Normal 123000.0
1341 1342 20 RL 66.0 13695 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW RRAe Norm 1Fam 1Story 6 5 2003 2004 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No GLQ 814.0 Unf 0.0 300.0 1114.0 GasA ... Y SBrkr 1114 0 0 1114 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Detchd 2004.0 Unf 2.0 576.0 TA TA Y 0 78 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 155000.0
1342 1343 60 RL NaN 9375 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 8 5 2002 2002 Gable CompShg VinylSd VinylSd BrkFace 149.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1284.0 1284.0 GasA ... Y SBrkr 1284 885 0 2169 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2002.0 RFn 2.0 647.0 TA TA Y 192 87 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 228500.0
1343 1344 50 RL 57.0 7558 Pave NaN Reg Bnk AllPub Inside Gtl Crawfor Norm Norm 1Fam 1.5Fin 6 6 1928 1950 Gable CompShg BrkFace Stone None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 896.0 896.0 GasA ... Y SBrkr 1172 741 0 1913 0.0 0.0 1 1 3 1 TA 9 Typ 1 TA Detchd 1929.0 Unf 2.0 342.0 Fa Fa Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal 177000.0
1344 1345 60 RL 85.0 11103 Pave NaN IR1 Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 728.0 728.0 GasA ... Y SBrkr 728 728 0 1456 0.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 2006.0 Fin 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2007 New Partial 155835.0
1345 1346 30 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 4 4 1920 1950 Hip CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No ALQ 250.0 Unf 0.0 710.0 960.0 GasA ... Y FuseA 960 0 0 960 0.0 0.0 1 0 2 1 Fa 5 Typ 0 NaN Detchd 1997.0 Unf 1.0 308.0 TA TA Y 0 0 168 0 0 0 NaN NaN NaN 0 7 2007 WD Normal 108500.0
1346 1347 20 RL NaN 20781 Pave NaN IR2 Lvl AllPub CulDSac Gtl NWAmes PosN Norm 1Fam 1Story 7 7 1968 2003 Hip CompShg BrkFace HdBoard None 0.0 TA TA CBlock TA TA No BLQ 297.0 Rec 68.0 1203.0 1568.0 GasA ... Y SBrkr 2156 0 0 2156 0.0 0.0 2 0 3 1 TA 9 Typ 1 Gd Attchd 1968.0 RFn 2.0 508.0 Gd TA Y 0 80 0 290 0 0 NaN NaN NaN 0 6 2006 WD Normal 262500.0
1347 1348 20 RL 93.0 15306 Pave NaN IR1 HLS AllPub Corner Gtl Timber Norm Norm 1Fam 1Story 8 5 2006 2007 Gable CompShg VinylSd VinylSd Stone 100.0 Gd TA PConc Ex TA Gd GLQ 80.0 Unf 0.0 1652.0 1732.0 GasA ... Y SBrkr 1776 0 0 1776 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 Fin 3.0 712.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2007 New Partial 283463.0
1348 1349 20 RL NaN 16196 Pave NaN IR3 Low AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 7 5 1998 1998 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Gd GLQ 1443.0 Unf 0.0 39.0 1482.0 GasA ... Y SBrkr 1494 0 0 1494 1.0 0.0 2 0 3 1 Gd 5 Typ 1 Fa Attchd 1998.0 RFn 2.0 514.0 TA TA Y 402 25 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 215000.0
1349 1350 70 RM 50.0 5250 Pave Pave Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 8 5 1872 1987 Gable CompShg MetalSd MetalSd None 0.0 TA Gd BrkTil TA Fa No LwQ 259.0 Unf 0.0 425.0 684.0 OthW ... N SBrkr 938 1215 205 2358 0.0 0.0 2 0 4 1 TA 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 54 20 0 0 0 NaN NaN NaN 0 12 2008 WD Normal 122000.0
1350 1351 90 RL 91.0 11643 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Artery Norm Duplex 2Story 5 5 1969 1969 Gable CompShg MetalSd MetalSd BrkFace 368.0 TA TA CBlock TA TA No LwQ 500.0 Unf 0.0 748.0 1248.0 GasA ... Y SBrkr 1338 1296 0 2634 1.0 1.0 2 2 6 2 TA 12 Typ 0 NaN Detchd 1969.0 Unf 4.0 968.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal 200000.0
1351 1352 60 RL 70.0 9247 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 2Story 6 6 1962 1962 Gable CompShg HdBoard HdBoard BrkFace 318.0 TA TA CBlock TA TA No Rec 319.0 Unf 0.0 539.0 858.0 GasA ... Y SBrkr 858 858 0 1716 0.0 0.0 1 1 4 1 TA 8 Typ 1 Gd Attchd 1962.0 Fin 2.0 490.0 TA TA Y 0 84 0 0 120 0 NaN NaN NaN 0 3 2008 WD Normal 171000.0
1352 1353 50 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 9 1937 2000 Gable CompShg MetalSd MetalSd None 0.0 Gd TA BrkTil TA TA No Unf 0.0 Unf 0.0 698.0 698.0 GasA ... Y SBrkr 786 390 0 1176 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1999.0 Unf 2.0 624.0 TA TA N 210 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 134900.0
1353 1354 50 RL 56.0 14720 Pave NaN IR1 Lvl AllPub CulDSac Gtl NoRidge Norm Norm 1Fam 1.5Fin 8 5 1995 1996 Hip CompShg VinylSd VinylSd BrkFace 579.0 Gd TA PConc Gd TA Av GLQ 816.0 Unf 0.0 1217.0 2033.0 GasA ... Y SBrkr 2053 1185 0 3238 1.0 0.0 2 1 4 1 Gd 9 Typ 1 Ex Attchd 1996.0 Fin 3.0 666.0 TA TA Y 283 86 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal 410000.0
1354 1355 60 RL NaN 10316 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2000 2000 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 735.0 Unf 0.0 257.0 992.0 GasA ... Y SBrkr 992 873 0 1865 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 2000.0 RFn 3.0 839.0 TA TA Y 0 184 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 235000.0
1355 1356 80 RL 102.0 10192 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam SLvl 7 6 1968 1992 Gable CompShg MetalSd MetalSd BrkFace 143.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 570.0 570.0 GasA ... Y SBrkr 1222 698 0 1920 0.0 0.0 3 0 4 1 Gd 8 Typ 1 TA Attchd 1968.0 RFn 2.0 487.0 TA TA Y 0 98 0 0 0 0 NaN GdPrv NaN 0 9 2006 WD Normal 170000.0
1356 1357 20 RL NaN 9477 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 5 1966 1966 Gable CompShg HdBoard HdBoard BrkFace 65.0 TA TA CBlock TA TA No Rec 340.0 Unf 0.0 524.0 864.0 GasA ... Y SBrkr 892 0 0 892 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1966.0 RFn 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 10 2008 WD Normal 110000.0
1357 1358 20 RL NaN 12537 Pave NaN IR1 Lvl AllPub CulDSac Gtl NAmes Norm Norm 1Fam 1Story 5 6 1971 2008 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No GLQ 734.0 Unf 0.0 344.0 1078.0 GasA ... Y SBrkr 1078 0 0 1078 1.0 0.0 1 1 3 1 TA 6 Typ 1 Fa Attchd 1971.0 Fin 2.0 500.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 149900.0
1358 1359 160 FV NaN 2117 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 6 5 2000 2000 Gable CompShg MetalSd MetalSd BrkFace 216.0 Gd TA PConc Gd TA No GLQ 378.0 Unf 0.0 378.0 756.0 GasA ... Y SBrkr 769 804 0 1573 0.0 0.0 2 1 3 1 Gd 5 Typ 0 NaN Detchd 2000.0 Unf 2.0 440.0 TA TA Y 0 32 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 177500.0
1359 1360 20 RL 129.0 16737 Pave NaN Reg Lvl AllPub FR3 Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2004 2005 Hip CompShg VinylSd VinylSd BrkFace 66.0 Gd TA PConc Ex TA Av GLQ 1447.0 Unf 0.0 533.0 1980.0 GasA ... Y SBrkr 1980 0 0 1980 1.0 0.0 2 0 3 1 Ex 8 Typ 1 Gd Attchd 2004.0 Fin 3.0 770.0 TA TA Y 194 45 0 0 0 0 NaN NaN NaN 0 9 2006 WD Normal 315000.0
1360 1361 70 RL 51.0 9842 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Feedr Norm 1Fam 2Story 5 6 1921 1998 Gable CompShg MetalSd Wd Sdng None 0.0 TA TA BrkTil TA Fa No Unf 0.0 Unf 0.0 612.0 612.0 GasA ... Y SBrkr 990 1611 0 2601 0.0 0.0 3 1 4 1 TA 8 Typ 0 NaN BuiltIn 1998.0 RFn 2.0 621.0 TA TA Y 183 0 301 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 189000.0
1361 1362 20 RL 124.0 16158 Pave NaN IR1 Low AllPub Inside Mod StoneBr Norm Norm 1Fam 1Story 7 5 2005 2005 Hip CompShg VinylSd VinylSd Stone 16.0 Gd TA PConc Ex TA Av ALQ 1274.0 Unf 0.0 256.0 1530.0 GasA ... Y SBrkr 1530 0 0 1530 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2005.0 Fin 2.0 430.0 TA TA Y 168 36 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 260000.0
1362 1363 50 RL NaN 12513 Pave NaN IR1 Lvl AllPub FR2 Gtl NAmes Feedr Norm 1Fam 1.5Fin 4 4 1920 2007 Gable CompShg VinylSd VinylSd None 0.0 TA Gd BrkTil TA Fa No Unf 0.0 Unf 0.0 715.0 715.0 GasA ... Y SBrkr 1281 457 0 1738 0.0 0.0 2 0 4 1 TA 7 Typ 1 Gd Attchd 1920.0 Unf 1.0 368.0 TA TA Y 55 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 104900.0
1363 1364 60 RL 73.0 8499 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2006 2007 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 616.0 616.0 GasA ... Y SBrkr 616 796 0 1412 0.0 0.0 2 1 3 1 Gd 6 Typ 1 Gd BuiltIn 2007.0 Fin 2.0 432.0 TA TA Y 0 36 0 0 0 0 NaN NaN NaN 0 3 2007 New Partial 156932.0
1364 1365 160 FV 30.0 3180 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 2Story 7 5 2005 2005 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 600.0 600.0 GasA ... Y SBrkr 520 600 80 1200 0.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Detchd 2005.0 RFn 2.0 480.0 TA TA Y 0 166 0 0 0 0 NaN NaN NaN 0 4 2006 WD Abnorml 144152.0
1365 1366 60 FV NaN 7500 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 2000 2000 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 533.0 Unf 0.0 281.0 814.0 GasA ... Y SBrkr 814 860 0 1674 1.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2000.0 RFn 2.0 663.0 TA TA Y 0 96 0 0 0 0 NaN NaN NaN 0 1 2010 WD Normal 216000.0
1366 1367 60 RL 68.0 9179 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1999 1999 Gable CompShg VinylSd VinylSd BrkFace 158.0 Gd TA PConc Gd TA No GLQ 633.0 Unf 0.0 240.0 873.0 GasA ... Y SBrkr 882 908 0 1790 1.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1999.0 RFn 2.0 588.0 TA TA Y 0 88 0 0 0 0 NaN NaN NaN 0 6 2008 WD Abnorml 193000.0
1367 1368 160 RM 41.0 2665 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 2Story 5 6 1977 1977 Gable CompShg CemntBd CmentBd None 0.0 TA TA PConc TA TA No ALQ 548.0 Rec 173.0 36.0 757.0 GasA ... Y SBrkr 925 550 0 1475 0.0 0.0 2 0 4 1 TA 6 Typ 1 TA Attchd 1977.0 RFn 1.0 336.0 TA TA Y 104 26 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 127000.0
1368 1369 120 RM NaN 4435 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm TwnhsE 1Story 6 5 2003 2004 Gable CompShg VinylSd VinylSd BrkFace 170.0 Gd TA PConc Gd TA Av GLQ 685.0 Unf 0.0 163.0 848.0 GasA ... Y SBrkr 848 0 0 848 1.0 0.0 1 0 1 1 Gd 4 Typ 0 NaN Attchd 2003.0 Fin 2.0 420.0 TA TA Y 140 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 144000.0
1369 1370 20 RL 48.0 10635 Pave NaN IR2 Lvl AllPub FR2 Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2003 2003 Hip CompShg VinylSd VinylSd BrkFace 171.0 Gd TA PConc Gd TA Av BLQ 370.0 GLQ 972.0 315.0 1657.0 GasA ... Y SBrkr 1668 0 0 1668 1.0 0.0 2 0 3 1 Gd 8 Typ 1 TA Attchd 2003.0 Fin 2.0 502.0 TA TA Y 0 262 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal 232000.0
1370 1371 50 RL 90.0 5400 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Artery Norm 1Fam 1.5Fin 4 6 1920 1950 Gable CompShg CBlock CBlock None 0.0 Fa TA PConc TA TA No ALQ 315.0 Rec 105.0 420.0 840.0 GasA ... Y SBrkr 840 534 0 1374 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1967.0 Fin 1.0 338.0 TA TA Y 0 0 198 0 0 0 NaN NaN NaN 0 10 2009 WD Normal 105000.0
1371 1372 80 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 6 6 1955 1996 Hip CompShg AsbShng AsbShng None 0.0 TA TA CBlock TA TA Av BLQ 831.0 Unf 0.0 161.0 992.0 GasA ... Y SBrkr 1661 0 0 1661 1.0 0.0 1 0 3 1 Gd 8 Typ 1 TA BuiltIn 1955.0 RFn 1.0 377.0 TA TA Y 0 28 0 0 178 0 NaN MnPrv NaN 0 10 2008 WD Normal 165500.0
1372 1373 60 RL 75.0 9750 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 2Story 7 6 1998 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Av GLQ 975.0 Unf 0.0 133.0 1108.0 GasA ... Y SBrkr 1108 989 0 2097 1.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Detchd 1998.0 RFn 2.0 583.0 TA TA Y 253 170 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 274300.0
1373 1374 20 RL NaN 11400 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 1Story 10 5 2001 2002 Hip CompShg VinylSd VinylSd BrkFace 705.0 Ex TA PConc Ex TA Gd GLQ 1282.0 Unf 0.0 1351.0 2633.0 GasA ... Y SBrkr 2633 0 0 2633 1.0 0.0 2 1 2 1 Ex 8 Typ 2 Gd Attchd 2001.0 RFn 3.0 804.0 TA TA Y 314 140 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal 466500.0
1374 1375 60 FV 85.0 10625 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 2005 2005 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1026.0 1026.0 GasA ... Y SBrkr 1026 932 0 1958 0.0 0.0 2 1 3 1 Gd 9 Typ 1 Gd Attchd 2005.0 Fin 3.0 936.0 TA TA Y 154 210 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 250000.0
1375 1376 20 RL 89.0 10991 Pave NaN IR1 HLS AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd BrkFace 80.0 Gd TA PConc Gd TA Gd Unf 0.0 Unf 0.0 1571.0 1571.0 GasA ... Y SBrkr 1571 0 0 1571 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2007.0 Fin 3.0 722.0 TA TA Y 100 36 0 0 0 0 NaN NaN NaN 0 12 2007 New Partial 239000.0
1376 1377 30 RL 52.0 6292 Pave NaN Reg Bnk AllPub Inside Gtl SWISU Norm Norm 1Fam 1Story 6 5 1930 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Gd TA Mn Rec 384.0 Unf 0.0 384.0 768.0 GasA ... N SBrkr 790 0 0 790 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1925.0 Unf 1.0 160.0 Fa TA Y 0 141 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal 91000.0
1377 1378 50 RL 60.0 10998 Pave Grvl Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 5 5 1941 1960 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No LwQ 408.0 BLQ 420.0 156.0 984.0 GasA ... Y SBrkr 984 620 0 1604 0.0 0.0 2 0 3 1 TA 6 Min2 0 NaN Detchd 1977.0 Unf 2.0 660.0 TA TA Y 0 68 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal 117000.0
1378 1379 160 RM 21.0 1953 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 5 1973 1973 Gable CompShg HdBoard HdBoard BrkFace 408.0 TA TA CBlock TA Fa No BLQ 309.0 Unf 0.0 174.0 483.0 GasA ... Y SBrkr 483 504 0 987 0.0 0.0 1 1 2 1 TA 5 Typ 0 NaN Detchd 1973.0 Unf 1.0 264.0 TA TA Y 72 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal 83000.0
1379 1380 80 RL 73.0 9735 Pave NaN Reg Lvl AllPub Inside Gtl Timber Norm Norm 1Fam SLvl 5 5 2006 2007 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 384.0 384.0 GasA ... Y NaN 754 640 0 1394 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN BuiltIn 2007.0 Fin 2.0 400.0 TA TA Y 100 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 167500.0
1380 1381 30 RL 45.0 8212 Pave Grvl Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 3 3 1914 1950 Gable CompShg Stucco Stucco None 0.0 TA Fa BrkTil TA Fa No Rec 203.0 Unf 0.0 661.0 864.0 GasA ... N FuseF 864 0 0 864 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1938.0 Unf 1.0 200.0 TA Fa Y 0 0 96 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 58500.0
1381 1382 20 RL NaN 12925 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 7 1970 1970 Gable CompShg BrkFace Plywood None 0.0 TA TA CBlock TA TA Mn BLQ 865.0 Unf 0.0 340.0 1205.0 GasA ... Y SBrkr 2117 0 0 2117 0.0 0.0 2 1 4 1 TA 7 Typ 2 Gd Attchd 1970.0 Fin 2.0 550.0 TA TA Y 0 42 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 237500.0
1382 1383 70 RM 60.0 7200 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 2Story 7 7 1920 1950 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Fa TA No Unf 0.0 Unf 0.0 596.0 596.0 GasA ... Y SBrkr 998 764 0 1762 1.0 0.0 1 1 4 1 Gd 8 Typ 0 NaN Detchd 1989.0 Unf 2.0 576.0 TA TA N 36 0 221 0 0 0 NaN NaN NaN 0 10 2006 WD Normal 157000.0
1383 1384 30 RL NaN 25339 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 7 1918 2007 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd BrkTil TA TA No Unf 0.0 Unf 0.0 816.0 816.0 GasA ... Y SBrkr 1416 0 0 1416 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2007.0 Unf 2.0 576.0 TA TA N 0 0 112 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 112000.0
1384 1385 50 RL 60.0 9060 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 6 5 1939 1950 Gable CompShg WdShing Wd Shng None 0.0 TA TA BrkTil TA TA Mn Rec 204.0 Unf 0.0 356.0 560.0 GasA ... Y SBrkr 698 560 0 1258 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1939.0 Unf 1.0 280.0 TA TA P 0 0 0 0 0 0 NaN MnPrv NaN 0 10 2009 WD Normal 105000.0
1385 1386 50 RM 40.0 5436 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 4 8 1922 2007 Gable CompShg VinylSd VinylSd None 0.0 TA Gd BrkTil TA TA No BLQ 735.0 Unf 0.0 61.0 796.0 GasA ... Y SBrkr 796 358 0 1154 1.0 0.0 1 0 3 1 Gd 7 Typ 0 NaN Detchd 1922.0 Unf 1.0 240.0 TA TA N 0 96 0 0 0 0 NaN MnPrv NaN 0 5 2010 WD Normal 125500.0
1386 1387 60 RL 80.0 16692 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes RRAn Norm 1Fam 2Story 7 5 1978 1978 Gable CompShg Plywood Plywood BrkFace 184.0 TA TA CBlock Gd TA No BLQ 790.0 LwQ 469.0 133.0 1392.0 GasA ... Y SBrkr 1392 1392 0 2784 1.0 0.0 3 1 5 1 Gd 12 Typ 2 TA Attchd 1978.0 RFn 2.0 564.0 TA TA Y 0 112 0 0 440 519 Fa MnPrv TenC 2000 7 2006 WD Normal 250000.0
1387 1388 50 RM 60.0 8520 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1.5Fin 6 7 1916 1950 Gable CompShg Stucco Stucco None 0.0 TA Gd BrkTil TA TA No Rec 168.0 LwQ 546.0 0.0 714.0 GasW ... N SBrkr 1664 862 0 2526 0.0 0.0 2 0 5 1 Gd 10 Typ 1 Gd Detchd 1916.0 Unf 1.0 216.0 TA TA Y 88 15 0 0 0 0 NaN GdWo NaN 0 8 2007 CWD Family 136000.0
1388 1389 20 RL 42.0 14892 Pave NaN IR1 HLS AllPub CulDSac Gtl Gilbert Norm Norm 1Fam 1Story 9 5 2006 2007 Gable CompShg VinylSd VinylSd Stone 160.0 Ex TA PConc Ex TA Gd GLQ 1320.0 Unf 0.0 426.0 1746.0 GasA ... Y SBrkr 1746 0 0 1746 1.0 0.0 2 0 3 1 Ex 7 Typ 2 Gd Attchd 2006.0 Fin 3.0 758.0 TA TA Y 201 39 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal 377500.0
1389 1390 50 RM 60.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 6 1941 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd BrkTil TA Gd No ALQ 375.0 Unf 0.0 360.0 735.0 GasA ... Y SBrkr 869 349 0 1218 0.0 1.0 1 0 3 1 TA 6 Typ 1 Gd Detchd 2003.0 Unf 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal 131000.0
1390 1391 20 RL 70.0 9100 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2000 2000 Gable CompShg VinylSd VinylSd BrkFace 244.0 Gd TA PConc Gd TA Av GLQ 1400.0 Unf 0.0 125.0 1525.0 GasA ... Y SBrkr 1525 0 0 1525 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2000.0 RFn 2.0 541.0 TA TA Y 219 36 0 0 0 0 NaN NaN NaN 0 9 2006 WD Normal 235000.0
1391 1392 90 RL 65.0 8944 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm Duplex 1Story 5 5 1967 1967 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1584.0 1584.0 GasA ... Y SBrkr 1584 0 0 1584 0.0 0.0 2 0 4 2 TA 8 Mod 0 NaN Detchd 1967.0 Unf 3.0 792.0 TA TA Y 0 152 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal 124000.0
1392 1393 85 RL 68.0 7838 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SFoyer 5 5 1967 1967 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA Av ALQ 769.0 Unf 0.0 95.0 864.0 GasA ... Y SBrkr 900 0 0 900 1.0 0.0 1 0 3 1 TA 6 Typ 1 Po Attchd 1967.0 RFn 1.0 288.0 TA TA Y 175 144 0 0 0 0 NaN MnWw NaN 0 12 2006 WD Normal 123000.0
1393 1394 190 RM 60.0 10800 Pave Pave Reg Lvl AllPub Inside Gtl OldTown Norm Norm 2fmCon 1.5Fin 6 7 1905 2000 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Fa TA No Unf 0.0 Unf 0.0 482.0 482.0 GasA ... N SBrkr 1221 691 0 1912 0.0 0.0 2 0 3 2 TA 7 Typ 1 TA Detchd 2003.0 Unf 2.0 672.0 Gd TA Y 0 25 212 0 0 0 NaN NaN NaN 0 4 2008 WD Normal 163000.0
1394 1395 120 RL 53.0 4045 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2006 2006 Hip CompShg VinylSd VinylSd BrkFace 45.0 Gd TA PConc Gd TA Av GLQ 1070.0 Unf 0.0 286.0 1356.0 GasA ... Y SBrkr 1500 0 0 1500 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2006.0 Fin 3.0 648.0 TA TA Y 161 20 0 0 0 0 NaN NaN NaN 0 10 2006 New Partial 246578.0
1395 1396 60 RL 88.0 12665 Pave NaN IR1 Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 2Story 8 5 2005 2006 Hip CompShg VinylSd VinylSd BrkFace 245.0 Gd TA PConc Gd Gd Gd Unf 0.0 Unf 0.0 1094.0 1094.0 GasA ... Y SBrkr 1133 1349 0 2482 0.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd BuiltIn 2005.0 Fin 3.0 642.0 TA TA Y 144 39 0 0 0 0 NaN NaN NaN 0 2 2007 WD Normal 281213.0
1396 1397 20 RL NaN 57200 Pave NaN IR1 Bnk AllPub Inside Sev Timber Norm Norm 1Fam 1Story 5 5 1948 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Av BLQ 353.0 Rec 334.0 60.0 747.0 GasA ... Y SBrkr 1687 0 0 1687 1.0 0.0 1 0 3 1 TA 7 Min1 2 TA Detchd 1966.0 Unf 2.0 572.0 TA TA N 0 0 50 0 0 0 NaN NaN NaN 0 6 2010 WD Normal 160000.0
1397 1398 70 RM 51.0 6120 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 2Story 5 8 1920 2004 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA Mn Unf 0.0 Unf 0.0 939.0 939.0 GasA ... Y SBrkr 939 574 0 1513 0.0 0.0 1 1 4 1 TA 8 Typ 0 NaN Detchd 1933.0 Unf 1.0 180.0 Fa Fa N 24 0 150 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 137500.0
1398 1399 50 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Fin 5 4 1950 1982 Gable CompShg VinylSd Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 180.0 BLQ 352.0 676.0 1208.0 GasA ... Y FuseA 1136 768 0 1904 1.0 0.0 1 1 3 1 TA 7 Min1 0 NaN Attchd 1950.0 Unf 1.0 240.0 TA TA Y 0 0 168 0 0 0 NaN GdPrv NaN 0 5 2009 WD Normal 138000.0
1399 1400 50 RL 51.0 6171 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Norm Norm 1Fam 1.5Fin 6 6 1925 1990 Gable CompShg WdShing Wd Shng None 0.0 TA TA BrkTil TA TA No BLQ 264.0 Unf 0.0 712.0 976.0 GasA ... Y SBrkr 1160 448 0 1608 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Detchd 1925.0 Unf 1.0 216.0 Fa TA Y 147 16 0 0 0 0 NaN MnPrv NaN 0 10 2009 WD Normal 137450.0
1400 1401 50 RM 50.0 6000 Pave NaN Reg Lvl AllPub Corner Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 7 1929 1950 Gable CompShg WdShing Wd Shng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 862.0 862.0 GasA ... Y SBrkr 950 208 0 1158 0.0 0.0 1 0 3 1 TA 5 Typ 1 Gd BuiltIn 1929.0 RFn 1.0 208.0 TA TA Y 0 0 112 0 0 0 NaN NaN NaN 0 7 2008 WD Normal 120000.0
1401 1402 60 RL 62.0 7415 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc TA TA No GLQ 759.0 Unf 0.0 80.0 839.0 GasA ... Y SBrkr 864 729 0 1593 1.0 0.0 2 1 3 1 TA 8 Typ 1 TA Attchd 2004.0 Fin 2.0 398.0 TA TA Y 100 75 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal 193000.0
1402 1403 20 RL 64.0 6762 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd Gd Av Unf 0.0 Unf 0.0 1286.0 1286.0 GasA ... Y SBrkr 1294 0 0 1294 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2006.0 RFn 2.0 662.0 TA TA Y 168 55 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial 193879.0
1403 1404 20 RL 49.0 15256 Pave NaN IR1 Lvl AllPub CulDSac Gtl Somerst RRAn Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 84.0 Gd TA PConc Gd TA Gd GLQ 929.0 Unf 0.0 556.0 1485.0 GasA ... Y SBrkr 1464 0 0 1464 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2007.0 Unf 3.0 754.0 TA TA Y 168 160 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 282922.0
1404 1405 50 RL 60.0 10410 Pave Grvl Reg Lvl AllPub Corner Gtl OldTown Artery Norm 1Fam 1.5Fin 3 4 1915 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 672.0 672.0 GasA ... Y SBrkr 694 520 0 1214 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1998.0 Unf 3.0 936.0 TA TA Y 216 0 160 0 0 0 NaN MnPrv NaN 0 1 2006 WD Family 105000.0
1405 1406 120 RM 44.0 3842 Pave NaN IR1 HLS AllPub Inside Mod Crawfor Norm Norm TwnhsE 1Story 8 5 2004 2005 Hip CompShg CemntBd CmentBd Stone 174.0 Gd TA PConc Ex TA Gd GLQ 1373.0 Unf 0.0 221.0 1594.0 GasA ... Y SBrkr 1646 0 0 1646 1.0 1.0 2 0 2 1 Gd 5 Typ 1 Gd Attchd 2004.0 Fin 2.0 482.0 TA TA Y 128 53 0 0 155 0 NaN NaN NaN 0 1 2008 WD Normal 275000.0
1406 1407 85 RL 70.0 8445 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam SFoyer 5 7 1972 2007 Gable CompShg HdBoard Wd Shng None 0.0 TA TA CBlock Gd TA Av GLQ 656.0 Unf 0.0 112.0 768.0 GasA ... Y SBrkr 768 0 0 768 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1988.0 Unf 2.0 396.0 TA TA Y 58 0 0 0 0 0 NaN MnPrv NaN 0 3 2009 WD Normal 133000.0
1407 1408 20 RL NaN 8780 Pave NaN IR1 Lvl AllPub Corner Gtl Mitchel Norm Norm 1Fam 1Story 5 5 1985 1985 Gable CompShg HdBoard Plywood None 0.0 TA TA CBlock TA TA No ALQ 625.0 Unf 0.0 208.0 833.0 GasA ... Y SBrkr 833 0 0 833 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN MnPrv NaN 0 3 2009 WD Normal 112000.0
1408 1409 70 RM 60.0 7740 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 4 7 1910 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock Fa TA No Unf 0.0 Unf 0.0 622.0 622.0 GasA ... Y SBrkr 741 622 0 1363 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1966.0 Unf 2.0 528.0 TA TA Y 0 0 0 0 168 0 NaN NaN NaN 0 6 2010 WD Normal 125500.0
1409 1410 60 RL 46.0 20544 Pave NaN IR1 Lvl AllPub CulDSac Gtl NWAmes Norm Norm 1Fam 2Story 7 6 1986 1991 Gable CompShg Plywood Plywood BrkFace 123.0 TA Gd CBlock Gd TA No Unf 0.0 Unf 0.0 791.0 791.0 GasA ... Y SBrkr 1236 857 0 2093 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1986.0 Fin 2.0 542.0 TA TA Y 364 63 0 0 0 0 NaN MnPrv NaN 0 11 2008 WD Normal 215000.0
1410 1411 60 RL 79.0 12420 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2001 2001 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 666.0 Unf 0.0 278.0 944.0 GasA ... Y SBrkr 944 896 0 1840 1.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2001.0 RFn 2.0 622.0 TA TA Y 0 45 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 230000.0
1411 1412 50 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Fin 6 8 1950 2005 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA TA No BLQ 120.0 Unf 0.0 736.0 856.0 GasA ... Y SBrkr 1112 556 0 1668 0.0 0.0 1 1 3 1 TA 6 Min2 0 NaN Attchd 1950.0 Unf 1.0 271.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 9 2009 WD Normal 140000.0
1412 1413 90 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm Duplex 1Story 4 5 1949 1950 Gable CompShg BrkFace Stone None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 Wall ... N FuseF 1040 0 0 1040 0.0 0.0 2 0 2 2 TA 6 Typ 0 NaN Detchd 1956.0 Unf 2.0 420.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal 90000.0
1413 1414 20 RL 88.0 10994 Pave NaN IR1 Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam 1Story 8 5 2005 2006 Gable CompShg VinylSd VinylSd Stone 366.0 Gd TA PConc Gd Gd No GLQ 976.0 Unf 0.0 868.0 1844.0 GasA ... Y SBrkr 1844 0 0 1844 1.0 0.0 2 0 2 1 Gd 7 Typ 1 Gd Attchd 2005.0 Fin 2.0 620.0 TA TA Y 165 44 0 0 0 0 NaN NaN NaN 0 9 2009 COD Abnorml 257000.0
1414 1415 50 RL 64.0 13053 Pave Pave Reg Bnk AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 7 1923 2000 Gambrel CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 833.0 833.0 GasA ... Y SBrkr 1053 795 0 1848 0.0 0.0 1 1 4 1 Gd 8 Typ 1 Gd Detchd 1922.0 Unf 2.0 370.0 TA TA N 0 0 0 0 220 0 NaN NaN NaN 0 6 2008 WD Normal 207000.0
1415 1416 120 RL 51.0 3635 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2007 2007 Hip CompShg VinylSd VinylSd BrkFace 130.0 Gd TA PConc Gd TA No ALQ 988.0 Unf 0.0 398.0 1386.0 GasA ... Y SBrkr 1569 0 0 1569 0.0 1.0 2 0 1 1 Gd 7 Typ 1 TA Attchd 2007.0 RFn 3.0 660.0 TA TA Y 143 20 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 175900.0
1416 1417 190 RM 60.0 11340 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 2fmCon 2Story 4 6 1885 1950 Gable CompShg VinylSd AsbShng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 777.0 777.0 GasA ... Y SBrkr 1246 1044 0 2290 0.0 0.0 2 0 4 2 TA 11 Typ 0 NaN Detchd 1971.0 Unf 2.0 560.0 TA TA N 0 0 114 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 122500.0
1417 1418 60 RL NaN 16545 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1998 1998 Gable CompShg VinylSd VinylSd BrkFace 731.0 Gd TA PConc Gd TA Mn GLQ 781.0 Unf 0.0 503.0 1284.0 GasA ... Y SBrkr 1310 1140 0 2450 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1998.0 Fin 3.0 1069.0 TA TA Y 0 126 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal 340000.0
1418 1419 20 RL 71.0 9204 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1963 1963 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No BLQ 25.0 Rec 872.0 247.0 1144.0 GasA ... Y SBrkr 1144 0 0 1144 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1962.0 Unf 1.0 336.0 TA TA Y 0 88 0 0 0 0 NaN NaN NaN 0 8 2008 COD Normal 124000.0
1419 1420 20 RL NaN 16381 Pave NaN IR1 Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 6 5 1969 1969 Gable CompShg Plywood Plywood BrkFace 312.0 Gd Gd CBlock TA TA Av Rec 1110.0 Unf 0.0 734.0 1844.0 GasA ... Y SBrkr 1844 0 0 1844 1.0 0.0 2 0 3 1 Gd 7 Typ 1 TA Attchd 1969.0 RFn 2.0 540.0 TA TA Y 0 73 216 0 0 0 NaN NaN NaN 0 12 2006 WD Normal 223000.0
1420 1421 60 RL 90.0 11700 Pave NaN Reg Lvl AllPub Corner Gtl NWAmes Norm Norm 1Fam 2Story 6 6 1968 1968 Gable CompShg HdBoard HdBoard BrkFace 420.0 TA TA CBlock TA TA No ALQ 404.0 Unf 0.0 304.0 708.0 GasA ... Y SBrkr 708 708 0 1416 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1968.0 RFn 2.0 776.0 TA TA Y 0 169 0 0 119 0 NaN NaN NaN 0 5 2006 WD Normal 179900.0
1421 1422 120 RL 53.0 4043 Pave NaN Reg Lvl AllPub Inside Gtl NPkVill Norm Norm TwnhsE 1Story 6 5 1977 1977 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA No ALQ 360.0 Unf 0.0 709.0 1069.0 GasA ... Y SBrkr 1069 0 0 1069 0.0 0.0 2 0 2 1 TA 4 Typ 1 Fa Attchd 1977.0 RFn 2.0 440.0 TA TA Y 0 55 0 0 165 0 NaN NaN NaN 0 7 2010 WD Normal 127500.0
1422 1423 120 RM 37.0 4435 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm TwnhsE 1Story 6 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 170.0 Gd TA PConc Gd TA Av GLQ 686.0 Unf 0.0 162.0 848.0 GasA ... Y SBrkr 848 0 0 848 1.0 0.0 1 0 1 1 Gd 3 Typ 0 NaN Attchd 2003.0 Fin 2.0 420.0 TA TA Y 140 0 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal 136500.0
1423 1424 80 RL NaN 19690 Pave NaN IR1 Lvl AllPub CulDSac Gtl Edwards Norm Norm 1Fam SLvl 6 7 1966 1966 Flat Tar&Grv Plywood Plywood None 0.0 Gd Gd CBlock Gd TA Av Unf 0.0 Unf 0.0 697.0 697.0 GasA ... Y SBrkr 1575 626 0 2201 0.0 0.0 2 0 4 1 Gd 8 Typ 1 Gd Attchd 1966.0 Unf 2.0 432.0 Gd Gd Y 586 236 0 0 0 738 Gd GdPrv NaN 0 8 2006 WD Alloca 274970.0
1424 1425 20 RL NaN 9503 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1958 1983 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No ALQ 457.0 Rec 374.0 193.0 1024.0 GasA ... Y SBrkr 1344 0 0 1344 1.0 0.0 1 0 2 1 TA 6 Min1 1 TA Detchd 1970.0 Unf 1.0 484.0 TA TA Y 316 28 0 0 0 0 NaN GdWo NaN 0 6 2007 WD Normal 144000.0
1425 1426 20 RL 80.0 10721 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1959 1959 Hip CompShg HdBoard HdBoard Stone 243.0 Gd TA CBlock TA TA No Unf 0.0 Unf 0.0 1252.0 1252.0 GasA ... Y SBrkr 1252 0 0 1252 0.0 0.0 1 0 3 1 Gd 7 Typ 0 NaN Detchd 1960.0 Unf 2.0 528.0 TA TA Y 0 39 0 0 0 0 NaN NaN NaN 0 10 2008 WD Normal 142000.0
1426 1427 60 RL 81.0 10944 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 7 5 1994 1994 Gable CompShg VinylSd VinylSd BrkFace 448.0 Gd TA PConc Gd TA No GLQ 1000.0 Unf 0.0 223.0 1223.0 GasA ... Y SBrkr 1223 904 0 2127 1.0 0.0 2 1 3 1 Gd 5 Typ 2 TA Attchd 1994.0 RFn 2.0 525.0 TA TA Y 171 132 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal 271000.0
1427 1428 50 RL 60.0 10930 Pave Grvl Reg Bnk AllPub Inside Gtl NAmes Artery Norm 1Fam 1.5Fin 5 6 1945 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No BLQ 580.0 Unf 0.0 333.0 913.0 GasA ... Y FuseA 1048 510 0 1558 1.0 0.0 1 1 3 1 TA 6 Typ 1 TA Attchd 1962.0 Unf 1.0 288.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal 140000.0
1428 1429 30 RM 60.0 7200 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1Story 5 7 1940 1992 Gable CompShg MetalSd MetalSd Stone 294.0 TA Gd CBlock TA TA No BLQ 510.0 Unf 0.0 278.0 788.0 GasA ... Y SBrkr 804 0 0 804 1.0 0.0 1 0 2 1 Gd 4 Typ 2 Gd Attchd 1940.0 Unf 1.0 240.0 TA TA Y 0 0 154 0 0 0 NaN MnPrv NaN 0 2 2010 WD Abnorml 119000.0
1429 1430 20 RL NaN 12546 Pave NaN IR1 Lvl AllPub Corner Gtl NWAmes Norm Norm 1Fam 1Story 6 7 1981 1981 Gable CompShg MetalSd MetalSd BrkFace 310.0 Gd Gd CBlock Gd TA No BLQ 678.0 Unf 0.0 762.0 1440.0 GasA ... Y SBrkr 1440 0 0 1440 0.0 0.0 2 0 3 1 Gd 7 Typ 1 TA Attchd 1981.0 Fin 2.0 467.0 TA TA Y 0 0 99 0 0 0 NaN NaN NaN 0 4 2007 WD Normal 182900.0
1430 1431 60 RL 60.0 21930 Pave NaN IR3 Lvl AllPub Inside Gtl Gilbert RRAn Norm 1Fam 2Story 5 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd Gd Av Unf 0.0 Unf 0.0 732.0 732.0 GasA ... Y SBrkr 734 1104 0 1838 0.0 0.0 2 1 4 1 TA 7 Typ 1 Gd BuiltIn 2005.0 Fin 2.0 372.0 TA TA Y 100 40 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal 192140.0
1431 1432 120 RL NaN 4928 Pave NaN IR1 Lvl AllPub Inside Gtl NPkVill Norm Norm TwnhsE 1Story 6 6 1976 1976 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA No LwQ 958.0 Unf 0.0 0.0 958.0 GasA ... Y SBrkr 958 0 0 958 0.0 0.0 2 0 2 1 TA 5 Typ 0 NaN Attchd 1976.0 RFn 2.0 440.0 TA TA Y 0 60 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal 143750.0
1432 1433 30 RL 60.0 10800 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 4 6 1927 2007 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 656.0 656.0 GasA ... Y SBrkr 968 0 0 968 0.0 0.0 2 0 4 1 TA 5 Typ 0 NaN Detchd 1928.0 Unf 1.0 216.0 Fa Fa Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 64500.0
1433 1434 60 RL 93.0 10261 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2000 2000 Gable CompShg VinylSd VinylSd BrkFace 318.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 936.0 936.0 GasA ... Y SBrkr 962 830 0 1792 1.0 0.0 2 1 3 1 TA 8 Typ 1 TA Attchd 2000.0 Fin 2.0 451.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 186500.0
1434 1435 20 RL 80.0 17400 Pave NaN Reg Low AllPub Inside Mod Mitchel Norm Norm 1Fam 1Story 5 5 1977 1977 Gable CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No ALQ 936.0 Unf 0.0 190.0 1126.0 GasA ... Y SBrkr 1126 0 0 1126 1.0 0.0 2 0 3 1 TA 5 Typ 1 Gd Attchd 1977.0 RFn 2.0 484.0 TA TA P 295 41 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 160000.0
1435 1436 20 RL 80.0 8400 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 9 1962 2005 Gable CompShg Wd Sdng Wd Sdng BrkFace 237.0 Gd Gd CBlock TA TA No Unf 0.0 Unf 0.0 1319.0 1319.0 GasA ... Y SBrkr 1537 0 0 1537 1.0 0.0 1 1 3 1 Gd 7 Typ 1 Gd Attchd 1962.0 RFn 2.0 462.0 TA TA Y 0 36 0 0 0 0 NaN GdPrv NaN 0 7 2008 COD Abnorml 174000.0
1436 1437 20 RL 60.0 9000 Pave NaN Reg Lvl AllPub FR2 Gtl NAmes Norm Norm 1Fam 1Story 4 6 1971 1971 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc TA TA No ALQ 616.0 Unf 0.0 248.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1974.0 Unf 2.0 528.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 5 2007 WD Normal 120500.0
1437 1438 20 RL 96.0 12444 Pave NaN Reg Lvl AllPub FR2 Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2008 2008 Hip CompShg VinylSd VinylSd Stone 426.0 Ex TA PConc Ex TA Av GLQ 1336.0 Unf 0.0 596.0 1932.0 GasA ... Y SBrkr 1932 0 0 1932 1.0 0.0 2 0 2 1 Ex 7 Typ 1 Gd Attchd 2008.0 Fin 3.0 774.0 TA TA Y 0 66 0 304 0 0 NaN NaN NaN 0 11 2008 New Partial 394617.0
1438 1439 20 RM 90.0 7407 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1Story 6 7 1957 1996 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No GLQ 600.0 Unf 0.0 312.0 912.0 GasA ... Y FuseA 1236 0 0 1236 1.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Attchd 1957.0 Unf 2.0 923.0 TA TA Y 0 158 158 0 0 0 NaN MnPrv NaN 0 4 2010 WD Normal 149700.0
1439 1440 60 RL 80.0 11584 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam SLvl 7 6 1979 1979 Hip CompShg HdBoard HdBoard BrkFace 96.0 TA TA CBlock TA TA No GLQ 315.0 Rec 110.0 114.0 539.0 GasA ... Y SBrkr 1040 685 0 1725 0.0 0.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1979.0 RFn 2.0 550.0 TA TA Y 0 88 216 0 0 0 NaN NaN NaN 0 11 2007 WD Normal 197000.0
1440 1441 70 RL 79.0 11526 Pave NaN IR1 Bnk AllPub Inside Mod Crawfor Norm Norm 1Fam 2.5Fin 6 7 1922 1994 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil Ex TA No Unf 0.0 Unf 0.0 588.0 588.0 GasA ... Y SBrkr 1423 748 384 2555 0.0 0.0 2 0 3 1 TA 11 Min1 1 Gd Detchd 1993.0 Fin 2.0 672.0 TA TA Y 431 0 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal 191000.0
1441 1442 120 RM NaN 4426 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm TwnhsE 1Story 6 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 147.0 Gd TA PConc Gd TA Av GLQ 697.0 Unf 0.0 151.0 848.0 GasA ... Y SBrkr 848 0 0 848 1.0 0.0 1 0 1 1 Gd 3 Typ 1 TA Attchd 2004.0 RFn 2.0 420.0 TA TA Y 149 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal 149300.0
1442 1443 60 FV 85.0 11003 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 10 5 2008 2008 Gable CompShg VinylSd VinylSd Stone 160.0 Ex TA PConc Ex TA Av GLQ 765.0 Unf 0.0 252.0 1017.0 GasA ... Y SBrkr 1026 981 0 2007 1.0 0.0 2 1 3 1 Ex 10 Typ 1 Ex Attchd 2008.0 Fin 3.0 812.0 TA TA Y 168 52 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal 310000.0
1443 1444 30 RL NaN 8854 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Unf 6 6 1916 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 952.0 952.0 Grav ... N FuseF 952 0 0 952 0.0 0.0 1 0 2 1 Fa 4 Typ 1 Gd Detchd 1916.0 Unf 1.0 192.0 Fa Po P 0 98 0 0 40 0 NaN NaN NaN 0 5 2009 WD Normal 121000.0
1444 1445 20 RL 63.0 8500 Pave NaN Reg Lvl AllPub FR2 Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 106.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1422.0 1422.0 GasA ... Y SBrkr 1422 0 0 1422 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2004.0 RFn 2.0 626.0 TA TA Y 192 60 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal 179600.0
1445 1446 85 RL 70.0 8400 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam SFoyer 6 5 1966 1966 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA Gd LwQ 187.0 Rec 627.0 0.0 814.0 GasA ... Y SBrkr 913 0 0 913 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1990.0 Unf 1.0 240.0 TA TA Y 0 0 252 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 129000.0
1446 1447 20 RL NaN 26142 Pave NaN IR1 Lvl AllPub CulDSac Gtl Mitchel Norm Norm 1Fam 1Story 5 7 1962 1962 Gable CompShg HdBoard HdBoard BrkFace 189.0 TA TA CBlock TA TA No Rec 593.0 Unf 0.0 595.0 1188.0 GasA ... Y SBrkr 1188 0 0 1188 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1962.0 Unf 1.0 312.0 TA TA P 261 39 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 157900.0
1447 1448 60 RL 80.0 10000 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 8 5 1995 1996 Gable CompShg VinylSd VinylSd BrkFace 438.0 Gd TA PConc Gd TA No GLQ 1079.0 Unf 0.0 141.0 1220.0 GasA ... Y SBrkr 1220 870 0 2090 1.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1995.0 RFn 2.0 556.0 TA TA Y 0 65 0 0 0 0 NaN NaN NaN 0 12 2007 WD Normal 240000.0
1448 1449 50 RL 70.0 11767 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 2Story 4 7 1910 2000 Gable CompShg MetalSd HdBoard None 0.0 TA TA CBlock Fa TA No Unf 0.0 Unf 0.0 560.0 560.0 GasA ... N SBrkr 796 550 0 1346 0.0 0.0 1 1 2 1 TA 6 Min2 0 NaN Detchd 1950.0 Unf 1.0 384.0 Fa TA Y 168 24 0 0 0 0 NaN GdWo NaN 0 5 2007 WD Normal 112000.0
1449 1450 180 RM 21.0 1533 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs SFoyer 5 7 1970 1970 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock Gd TA Av GLQ 553.0 Unf 0.0 77.0 630.0 GasA ... Y SBrkr 630 0 0 630 1.0 0.0 1 0 1 1 Ex 3 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2006 WD Abnorml 92000.0
1450 1451 90 RL 60.0 9000 Pave NaN Reg Lvl AllPub FR2 Gtl NAmes Norm Norm Duplex 2Story 5 5 1974 1974 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 896.0 896.0 GasA ... Y SBrkr 896 896 0 1792 0.0 0.0 2 2 4 2 TA 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 32 45 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal 136000.0
1451 1452 20 RL 78.0 9262 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2008 2009 Gable CompShg CemntBd CmentBd Stone 194.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1573.0 1573.0 GasA ... Y SBrkr 1578 0 0 1578 0.0 0.0 2 0 3 1 Ex 7 Typ 1 Gd Attchd 2008.0 Fin 3.0 840.0 TA TA Y 0 36 0 0 0 0 NaN NaN NaN 0 5 2009 New Partial 287090.0
1452 1453 180 RM 35.0 3675 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm TwnhsE SLvl 5 5 2005 2005 Gable CompShg VinylSd VinylSd BrkFace 80.0 TA TA PConc Gd TA Gd GLQ 547.0 Unf 0.0 0.0 547.0 GasA ... Y SBrkr 1072 0 0 1072 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Basment 2005.0 Fin 2.0 525.0 TA TA Y 0 28 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal 145000.0
1453 1454 20 RL 90.0 17217 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1140.0 1140.0 GasA ... Y SBrkr 1140 0 0 1140 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 36 56 0 0 0 0 NaN NaN NaN 0 7 2006 WD Abnorml 84500.0
1454 1455 20 FV 62.0 7500 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2004 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 410.0 Unf 0.0 811.0 1221.0 GasA ... Y SBrkr 1221 0 0 1221 1.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 2004.0 RFn 2.0 400.0 TA TA Y 0 113 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal 185000.0
1455 1456 60 RL 62.0 7917 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1999 2000 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 953.0 953.0 GasA ... Y SBrkr 953 694 0 1647 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1999.0 RFn 2.0 460.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal 175000.0
1456 1457 20 RL 85.0 13175 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 6 1978 1988 Gable CompShg Plywood Plywood Stone 119.0 TA TA CBlock Gd TA No ALQ 790.0 Rec 163.0 589.0 1542.0 GasA ... Y SBrkr 2073 0 0 2073 1.0 0.0 2 0 3 1 TA 7 Min1 2 TA Attchd 1978.0 Unf 2.0 500.0 TA TA Y 349 0 0 0 0 0 NaN MnPrv NaN 0 2 2010 WD Normal 210000.0
1457 1458 70 RL 66.0 9042 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 7 9 1941 2006 Gable CompShg CemntBd CmentBd None 0.0 Ex Gd Stone TA Gd No GLQ 275.0 Unf 0.0 877.0 1152.0 GasA ... Y SBrkr 1188 1152 0 2340 0.0 0.0 2 0 4 1 Gd 9 Typ 2 Gd Attchd 1941.0 RFn 1.0 252.0 TA TA Y 0 60 0 0 0 0 NaN GdPrv Shed 2500 5 2010 WD Normal 266500.0
1458 1459 20 RL 68.0 9717 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1950 1996 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA Mn GLQ 49.0 Rec 1029.0 0.0 1078.0 GasA ... Y FuseA 1078 0 0 1078 1.0 0.0 1 0 2 1 Gd 5 Typ 0 NaN Attchd 1950.0 Unf 1.0 240.0 TA TA Y 366 0 112 0 0 0 NaN NaN NaN 0 4 2010 WD Normal 142125.0
1459 1460 20 RL 75.0 9937 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 6 1965 1965 Gable CompShg HdBoard HdBoard None 0.0 Gd TA CBlock TA TA No BLQ 830.0 LwQ 290.0 136.0 1256.0 GasA ... Y SBrkr 1256 0 0 1256 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1965.0 Fin 1.0 276.0 TA TA Y 736 68 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal 147500.0
1460 1461 20 RH 80.0 11622 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam 1Story 5 6 1961 1961 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No Rec 468.0 LwQ 144.0 270.0 882.0 GasA ... Y SBrkr 896 0 0 896 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1961.0 Unf 1.0 730.0 TA TA Y 140 0 0 0 120 0 NaN MnPrv NaN 0 6 2010 WD Normal NaN
1461 1462 20 RL 81.0 14267 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 6 1958 1958 Hip CompShg Wd Sdng Wd Sdng BrkFace 108.0 TA TA CBlock TA TA No ALQ 923.0 Unf 0.0 406.0 1329.0 GasA ... Y SBrkr 1329 0 0 1329 0.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN Attchd 1958.0 Unf 1.0 312.0 TA TA Y 393 36 0 0 0 0 NaN NaN Gar2 12500 6 2010 WD Normal NaN
1462 1463 60 RL 74.0 13830 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 5 5 1997 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No GLQ 791.0 Unf 0.0 137.0 928.0 GasA ... Y SBrkr 928 701 0 1629 0.0 0.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1997.0 Fin 2.0 482.0 TA TA Y 212 34 0 0 0 0 NaN MnPrv NaN 0 3 2010 WD Normal NaN
1463 1464 60 RL 78.0 9978 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 6 1998 1998 Gable CompShg VinylSd VinylSd BrkFace 20.0 TA TA PConc TA TA No GLQ 602.0 Unf 0.0 324.0 926.0 GasA ... Y SBrkr 926 678 0 1604 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 1998.0 Fin 2.0 470.0 TA TA Y 360 36 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1464 1465 120 RL 43.0 5005 Pave NaN IR1 HLS AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 1992 1992 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA No ALQ 263.0 Unf 0.0 1017.0 1280.0 GasA ... Y SBrkr 1280 0 0 1280 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 1992.0 RFn 2.0 506.0 TA TA Y 0 82 0 0 144 0 NaN NaN NaN 0 1 2010 WD Normal NaN
1465 1466 60 RL 75.0 10000 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1993 1994 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 763.0 763.0 GasA ... Y SBrkr 763 892 0 1655 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1993.0 Fin 2.0 440.0 TA TA Y 157 84 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1466 1467 20 RL NaN 7980 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 1Story 6 7 1992 2007 Gable CompShg HdBoard HdBoard None 0.0 TA Gd PConc Gd TA No ALQ 935.0 Unf 0.0 233.0 1168.0 GasA ... Y SBrkr 1187 0 0 1187 1.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Attchd 1992.0 Fin 2.0 420.0 TA TA Y 483 21 0 0 0 0 NaN GdPrv Shed 500 3 2010 WD Normal NaN
1467 1468 60 RL 63.0 8402 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1998 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 789.0 789.0 GasA ... Y SBrkr 789 676 0 1465 0.0 0.0 2 1 3 1 TA 7 Typ 1 Gd Attchd 1998.0 Fin 2.0 393.0 TA TA Y 0 75 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1468 1469 20 RL 85.0 10176 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 1Story 7 5 1990 1990 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA Gd GLQ 637.0 Unf 0.0 663.0 1300.0 GasA ... Y SBrkr 1341 0 0 1341 1.0 0.0 1 1 2 1 Gd 5 Typ 1 Po Attchd 1990.0 Unf 2.0 506.0 TA TA Y 192 0 0 0 0 0 NaN NaN NaN 0 2 2010 WD Normal NaN
1469 1470 20 RL 70.0 8400 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 4 5 1970 1970 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No ALQ 804.0 Rec 78.0 0.0 882.0 GasA ... Y SBrkr 882 0 0 882 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1970.0 Fin 2.0 525.0 TA TA Y 240 0 0 0 0 0 NaN MnPrv NaN 0 4 2010 WD Normal NaN
1470 1471 120 RH 26.0 5858 Pave NaN IR1 Lvl AllPub FR2 Gtl NAmes Norm Norm TwnhsE 1Story 7 5 1999 1999 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No GLQ 1051.0 BLQ 0.0 354.0 1405.0 GasA ... Y SBrkr 1337 0 0 1337 1.0 0.0 2 0 2 1 Gd 5 Typ 1 Fa Attchd 1999.0 Fin 2.0 511.0 TA TA Y 203 68 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1471 1472 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 5 1971 1971 Gable CompShg HdBoard HdBoard BrkFace 504.0 TA TA CBlock TA TA No Rec 156.0 Unf 0.0 327.0 483.0 GasA ... Y SBrkr 483 504 0 987 0.0 0.0 1 1 2 1 TA 5 Typ 0 NaN Detchd 1971.0 Unf 1.0 264.0 TA TA Y 275 0 0 0 0 0 NaN NaN NaN 0 2 2010 COD Normal NaN
1472 1473 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 5 5 1971 1971 Gable CompShg HdBoard HdBoard BrkFace 492.0 TA TA CBlock TA TA No Rec 300.0 Unf 0.0 225.0 525.0 GasA ... Y SBrkr 525 567 0 1092 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1997.0 Unf 1.0 320.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1473 1474 160 RL 24.0 2280 Pave NaN Reg Lvl AllPub FR2 Gtl NPkVill Norm Norm Twnhs 2Story 6 6 1975 1975 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock TA TA No ALQ 514.0 Unf 0.0 341.0 855.0 GasA ... Y SBrkr 855 601 0 1456 0.0 0.0 2 1 3 1 Gd 6 Typ 1 TA Attchd 1975.0 Unf 2.0 440.0 TA TA Y 173 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1474 1475 120 RL 24.0 2280 Pave NaN Reg Lvl AllPub FR2 Gtl NPkVill Norm Norm Twnhs 1Story 7 6 1975 1975 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 836.0 836.0 GasA ... Y SBrkr 836 0 0 836 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1975.0 Unf 1.0 308.0 TA TA Y 0 30 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1475 1476 60 RL 102.0 12858 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2009 2010 Gable CompShg VinylSd VinylSd Stone 162.0 Ex TA PConc Ex TA No Unf 0.0 Unf 0.0 1590.0 1590.0 GasA ... Y SBrkr 1627 707 0 2334 0.0 0.0 2 1 3 1 Ex 10 Typ 1 Gd Attchd 2009.0 Fin 3.0 751.0 TA TA Y 144 133 0 0 0 0 NaN NaN NaN 0 1 2010 New Partial NaN
1476 1477 20 RL 94.0 12883 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2009 2010 Gable CompShg VinylSd VinylSd Stone 256.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1544.0 1544.0 GasA ... Y SBrkr 1544 0 0 1544 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2009.0 RFn 3.0 868.0 TA TA Y 0 35 0 0 0 0 NaN NaN NaN 0 6 2010 New Partial NaN
1477 1478 20 RL 90.0 11520 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt PosN Norm 1Fam 1Story 9 5 2005 2005 Hip CompShg VinylSd VinylSd BrkFace 615.0 Gd TA PConc Ex TA No GLQ 110.0 Unf 0.0 1588.0 1698.0 GasA ... Y SBrkr 1698 0 0 1698 0.0 0.0 2 0 3 1 Ex 7 Typ 1 Gd Attchd 2005.0 Fin 3.0 730.0 TA TA Y 192 74 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1478 1479 20 RL 79.0 14122 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2005 2006 Hip CompShg CemntBd CmentBd BrkFace 240.0 Gd TA PConc Ex TA No GLQ 28.0 Unf 0.0 1794.0 1822.0 GasA ... Y SBrkr 1822 0 0 1822 0.0 0.0 2 0 3 1 Ex 8 Typ 1 Gd Attchd 2005.0 RFn 3.0 678.0 TA TA Y 0 119 0 0 0 0 NaN NaN NaN 0 2 2010 WD Normal NaN
1479 1480 20 RL 110.0 14300 Pave NaN Reg HLS AllPub Inside Mod NridgHt Norm Norm 1Fam 1Story 9 5 2003 2004 Hip CompShg VinylSd VinylSd BrkFace 1095.0 Ex TA PConc Ex TA Gd GLQ 1373.0 Unf 0.0 1473.0 2846.0 GasA ... Y SBrkr 2696 0 0 2696 1.0 0.0 2 1 3 1 Ex 10 Typ 2 Gd Attchd 2003.0 Fin 3.0 958.0 TA TA Y 220 150 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1480 1481 60 RL 105.0 13650 Pave NaN Reg Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2002 2002 Gable CompShg VinylSd VinylSd BrkFace 232.0 Gd TA PConc Gd TA Gd GLQ 578.0 Unf 0.0 1093.0 1671.0 GasA ... Y SBrkr 1687 563 0 2250 1.0 0.0 2 1 3 1 Gd 7 Typ 1 Ex Attchd 2002.0 Fin 3.0 756.0 TA TA Y 238 130 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1481 1482 120 RL 41.0 7132 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd Stone 178.0 Gd TA PConc Gd TA Mn GLQ 24.0 Unf 0.0 1346.0 1370.0 GasA ... Y SBrkr 1370 0 0 1370 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2006.0 RFn 2.0 484.0 TA TA Y 120 49 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1482 1483 20 RL 100.0 18494 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 1Story 6 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1324.0 1324.0 GasA ... Y SBrkr 1324 0 0 1324 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2005.0 Fin 2.0 430.0 TA TA Y 36 23 0 0 0 0 NaN NaN NaN 0 1 2010 WD Normal NaN
1483 1484 120 RL 43.0 3203 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd BrkFace 14.0 Gd TA PConc Gd TA Av GLQ 16.0 Unf 0.0 1129.0 1145.0 GasA ... Y SBrkr 1145 0 0 1145 0.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 2006.0 Fin 2.0 437.0 TA TA Y 100 116 0 0 0 0 NaN NaN NaN 0 1 2010 WD Normal NaN
1484 1485 80 RL 67.0 13300 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam SLvl 7 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 326.0 Unf 0.0 58.0 384.0 GasA ... Y SBrkr 744 630 0 1374 1.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd BuiltIn 2004.0 Fin 2.0 400.0 TA TA Y 100 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1485 1486 60 RL 63.0 8577 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 847.0 847.0 GasA ... Y SBrkr 847 886 0 1733 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd BuiltIn 2004.0 Fin 2.0 433.0 TA TA Y 144 48 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1486 1487 60 RL 60.0 17433 Pave NaN IR2 Lvl AllPub CulDSac Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1998 1998 Hip CompShg VinylSd VinylSd BrkFace 114.0 Gd TA PConc Ex TA No Unf 0.0 Unf 0.0 1629.0 1629.0 GasA ... Y SBrkr 1645 830 0 2475 0.0 0.0 2 1 4 1 Gd 7 Typ 1 TA Attchd 1998.0 Fin 3.0 962.0 TA TA Y 23 172 0 0 256 0 NaN NaN NaN 0 1 2010 WD Normal NaN
1487 1488 20 RL 73.0 8987 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 226.0 Gd TA PConc Gd TA NaN Unf 0.0 Unf 0.0 1595.0 1595.0 GasA ... Y SBrkr 1595 0 0 1595 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2005.0 RFn 3.0 880.0 TA TA Y 144 0 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1488 1489 20 FV 92.0 9215 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2009 2010 Hip CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1218.0 1218.0 GasA ... Y SBrkr 1218 0 0 1218 0.0 0.0 2 0 2 1 Gd 4 Typ 0 NaN Attchd 2009.0 RFn 2.0 676.0 TA TA Y 0 136 0 0 0 0 NaN NaN NaN 0 4 2010 New Partial NaN
1489 1490 20 FV 84.0 10440 Pave NaN Reg Lvl AllPub Corner Gtl Somerst Norm Norm 1Fam 1Story 6 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA No GLQ 1414.0 Unf 0.0 54.0 1468.0 GasA ... Y SBrkr 1468 0 0 1468 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2005.0 Fin 2.0 528.0 TA TA Y 0 102 0 0 216 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1490 1491 60 RL 70.0 11920 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 122.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 831.0 831.0 GasA ... Y SBrkr 831 828 0 1659 0.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 2004.0 RFn 2.0 484.0 TA TA Y 144 68 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1491 1492 30 RH 70.0 9800 Pave NaN Reg Lvl AllPub Corner Gtl SawyerW Feedr Norm 1Fam 1Story 5 5 1920 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Fa BrkTil TA TA No Unf 0.0 Unf 0.0 816.0 816.0 GasA ... N FuseA 1012 0 0 1012 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1920.0 Unf 1.0 429.0 TA TA Y 121 0 80 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1492 1493 20 RL 39.0 15410 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer RRNe Norm 1Fam 1Story 6 6 1974 2002 Hip CompShg Plywood Plywood BrkCmn 250.0 TA Gd CBlock TA TA Gd BLQ 126.0 GLQ 859.0 223.0 1208.0 GasA ... Y SBrkr 1494 0 0 1494 1.0 0.0 2 0 3 1 TA 7 Typ 2 Fa Attchd 1974.0 Fin 2.0 461.0 TA TA Y 296 0 186 0 0 0 NaN GdPrv NaN 0 4 2010 WD Abnorml NaN
1493 1494 60 RL 85.0 13143 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1993 1993 Gable CompShg HdBoard ImStucc BrkFace 504.0 Gd TA PConc Gd TA No LwQ 250.0 GLQ 981.0 0.0 1231.0 GasA ... Y SBrkr 1251 1098 0 2349 1.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1993.0 RFn 3.0 762.0 TA TA Y 32 130 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1494 1495 60 RL 88.0 11134 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1992 1993 Gable CompShg HdBoard HdBoard BrkFace 180.0 Gd TA PConc Gd TA No GLQ 1129.0 Unf 0.0 261.0 1390.0 GasA ... Y SBrkr 1402 823 0 2225 1.0 0.0 2 1 4 1 Gd 7 Typ 1 TA Attchd 1992.0 RFn 3.0 713.0 TA TA Y 198 30 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1495 1496 120 FV 25.0 4835 Pave NaN IR1 Lvl AllPub CulDSac Gtl Somerst Norm Norm TwnhsE 1Story 7 5 2004 2005 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Ex TA Av GLQ 1298.0 Unf 0.0 190.0 1488.0 GasA ... Y SBrkr 1488 0 0 1488 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2004.0 Fin 2.0 506.0 TA TA Y 168 50 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1496 1497 160 FV 39.0 3515 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 2Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 840.0 840.0 GasA ... Y SBrkr 840 840 0 1680 0.0 0.0 2 1 2 1 Gd 3 Typ 0 NaN Attchd 2004.0 RFn 2.0 588.0 TA TA Y 0 111 0 0 0 0 NaN NaN NaN 0 1 2010 WD Normal NaN
1497 1498 160 FV 30.0 3215 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 2Story 7 5 2004 2004 Gable CompShg MetalSd MetalSd BrkFace 120.0 Gd TA PConc Gd TA Av GLQ 280.0 Unf 0.0 320.0 600.0 GasA ... Y SBrkr 600 600 0 1200 0.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Detchd 2004.0 RFn 2.0 480.0 TA TA Y 0 172 0 0 0 0 NaN NaN NaN 0 4 2010 ConLD Normal NaN
1498 1499 160 FV 24.0 2544 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 7 5 2004 2005 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No GLQ 368.0 ALQ 42.0 190.0 600.0 GasA ... Y SBrkr 600 600 0 1200 1.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Detchd 2004.0 RFn 2.0 480.0 TA TA Y 0 172 0 0 0 0 NaN NaN NaN 0 2 2010 WD Normal NaN
1499 1500 160 FV 24.0 2544 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 6 5 2005 2005 Gable CompShg VinylSd VinylSd BrkFace 216.0 Gd TA PConc Gd TA No GLQ 376.0 Unf 0.0 224.0 600.0 GasA ... Y SBrkr 600 636 0 1236 1.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Detchd 2005.0 RFn 2.0 480.0 TA TA Y 0 166 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1500 1501 160 FV NaN 2980 Pave NaN Reg Lvl AllPub Corner Gtl Somerst Norm Norm TwnhsE 2Story 6 5 2000 2000 Gable CompShg MetalSd MetalSd BrkFace 1159.0 Gd TA PConc Gd TA No GLQ 466.0 Unf 0.0 290.0 756.0 GasA ... Y SBrkr 756 756 0 1512 1.0 0.0 2 1 2 1 Gd 5 Typ 0 NaN Detchd 2000.0 Unf 2.0 440.0 TA TA Y 0 32 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1501 1502 160 FV NaN 2403 Pave NaN IR1 Lvl AllPub FR2 Gtl Somerst Norm Norm TwnhsE 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 244.0 Unf 0.0 286.0 530.0 GasA ... Y SBrkr 530 550 0 1080 0.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Attchd 2003.0 RFn 2.0 496.0 TA TA Y 0 50 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1502 1503 20 FV 57.0 12853 Pave Pave IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2010 2010 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Ex Po No GLQ 1032.0 Unf 0.0 610.0 1642.0 GasA ... Y SBrkr 1418 0 0 1418 1.0 0.0 1 1 1 1 Gd 6 Typ 1 Gd Attchd 2010.0 RFn 3.0 852.0 TA TA Y 160 192 0 224 0 0 NaN NaN NaN 0 4 2010 New Partial NaN
1503 1504 60 FV 68.0 7379 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 2000 2000 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 484.0 Unf 0.0 491.0 975.0 GasA ... Y SBrkr 975 873 0 1848 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 2000.0 RFn 2.0 592.0 TA TA Y 280 184 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1504 1505 20 FV 80.0 8000 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 833.0 Unf 0.0 659.0 1492.0 GasA ... Y SBrkr 1492 0 0 1492 1.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2002.0 RFn 2.0 596.0 TA TA Y 277 137 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1505 1506 20 RL NaN 10456 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 6 1967 1967 Hip CompShg HdBoard HdBoard BrkFace 120.0 TA TA CBlock TA TA No GLQ 506.0 Unf 0.0 1323.0 1829.0 GasA ... Y SBrkr 1829 0 0 1829 1.0 0.0 2 0 4 1 TA 8 Typ 0 NaN Attchd 1967.0 RFn 2.0 535.0 TA TA Y 0 76 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1506 1507 60 RL 80.0 10791 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 6 5 1993 1993 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc Gd TA Mn GLQ 1137.0 Unf 0.0 143.0 1280.0 GasA ... Y SBrkr 1280 1215 0 2495 1.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1993.0 Unf 2.0 660.0 TA TA Y 224 32 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1507 1508 50 RL NaN 18837 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1.5Fin 6 5 1978 1978 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc Gd TA Mn ALQ 687.0 LwQ 46.0 491.0 1224.0 GasA ... Y SBrkr 1287 604 0 1891 0.0 1.0 3 0 3 1 TA 7 Typ 1 TA Attchd 1978.0 RFn 2.0 678.0 TA TA Y 0 69 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1508 1509 60 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 6 6 1971 1971 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No ALQ 329.0 Unf 0.0 386.0 715.0 GasA ... Y SBrkr 930 715 0 1645 0.0 0.0 1 2 4 1 TA 7 Typ 0 NaN Attchd 1971.0 RFn 2.0 441.0 TA TA Y 0 78 0 0 0 0 NaN GdWo NaN 0 6 2010 WD Normal NaN
1509 1510 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1966 1966 Hip CompShg VinylSd VinylSd BrkFace 172.0 TA TA CBlock TA TA No Rec 698.0 Unf 0.0 534.0 1232.0 GasA ... Y SBrkr 1232 0 0 1232 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1966.0 RFn 2.0 490.0 TA TA Y 0 224 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1510 1511 20 RL 90.0 9900 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 5 1966 1966 Hip CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No BLQ 1059.0 Unf 0.0 150.0 1209.0 GasA ... Y SBrkr 1209 0 0 1209 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1966.0 RFn 2.0 504.0 TA TA Y 0 0 120 0 0 0 NaN NaN NaN 0 4 2010 ConLD Normal NaN
1511 1512 20 RL 88.0 9680 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1967 1967 Gable CompShg Wd Sdng Plywood BrkFace 268.0 TA TA CBlock TA TA No BLQ 1010.0 Unf 0.0 500.0 1510.0 GasA ... Y SBrkr 1510 0 0 1510 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1967.0 RFn 2.0 517.0 TA TA Y 0 40 0 0 204 0 NaN GdPrv NaN 0 4 2010 WD Normal NaN
1512 1513 80 RL NaN 10600 Pave Pave IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 6 5 1964 1964 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 533.0 533.0 GasA ... Y SBrkr 1131 644 0 1775 0.0 0.0 2 0 3 1 TA 8 Typ 0 NaN Attchd 1964.0 Unf 2.0 480.0 TA TA Y 0 172 0 0 0 0 NaN NaN NaN 0 5 2010 COD Family NaN
1513 1514 90 RL 98.0 13260 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm Duplex 1Story 5 6 1962 2001 Hip CompShg HdBoard HdBoard BrkFace 144.0 TA TA CBlock TA TA No BLQ 1500.0 Unf 0.0 228.0 1728.0 GasA ... Y SBrkr 1728 0 0 1728 2.0 0.0 2 0 6 2 TA 10 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 1 2010 Oth Abnorml NaN
1514 1515 50 RL 68.0 9724 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Fin 5 7 1952 2002 Gable CompShg MetalSd MetalSd BrkFace 265.0 Gd TA CBlock TA TA No LwQ 670.0 Unf 0.0 470.0 1140.0 GasA ... Y SBrkr 1929 532 0 2461 0.0 0.0 2 0 3 1 TA 7 Min2 2 Gd Detchd 1994.0 Unf 2.0 400.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 3 2010 WD Normal NaN
1515 1516 50 RL 120.0 17360 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Artery Norm 1Fam 1.5Fin 6 6 1949 1950 Gable CompShg MetalSd MetalSd Stone 340.0 TA Gd CBlock TA TA No Rec 300.0 Unf 0.0 482.0 782.0 GasA ... Y SBrkr 1019 537 0 1556 0.0 0.0 2 0 3 1 TA 6 Typ 1 Gd Attchd 1949.0 Unf 2.0 470.0 TA TA Y 0 0 150 0 0 0 NaN NaN NaN 0 1 2010 WD Normal NaN
1516 1517 85 RL 75.0 11380 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SFoyer 6 8 1966 2008 Gable CompShg HdBoard HdBoard BrkFace 216.0 TA TA CBlock TA TA Gd GLQ 944.0 Unf 0.0 136.0 1080.0 GasA ... Y SBrkr 1128 0 0 1128 1.0 0.0 1 0 2 1 Gd 5 Typ 1 Gd Attchd 1966.0 Unf 1.0 315.0 TA TA Y 238 0 0 0 0 0 NaN NaN Shed 1500 1 2010 WD Normal NaN
1517 1518 90 RL 70.0 8267 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Feedr Norm Duplex 1Story 5 5 1958 1958 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1604.0 1604.0 GasA ... Y SBrkr 1604 0 0 1604 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Attchd 1958.0 Unf 2.0 576.0 TA TA Y 42 0 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1518 1519 20 RL 70.0 8197 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 7 5 2003 2009 Gable CompShg VinylSd VinylSd BrkFace 506.0 Gd TA PConc Gd TA No GLQ 1188.0 Unf 0.0 292.0 1480.0 GasA ... Y SBrkr 1480 0 0 1480 1.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2003.0 RFn 2.0 620.0 TA TA Y 252 73 0 0 0 0 NaN MnPrv Shed 300 2 2010 WD Normal NaN
1519 1520 20 RL NaN 8050 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1959 1959 Hip CompShg MetalSd MetalSd BrkFace 150.0 TA TA CBlock TA TA No BLQ 856.0 Rec 162.0 125.0 1143.0 GasA ... Y SBrkr 1143 0 0 1143 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1959.0 RFn 1.0 308.0 TA TA Y 0 0 0 0 0 0 NaN GdPrv NaN 0 5 2010 WD Normal NaN
1520 1521 20 RL 87.0 10725 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1959 1959 Hip CompShg MetalSd MetalSd BrkFace 91.0 TA TA CBlock TA TA No Rec 936.0 Unf 0.0 270.0 1206.0 GasA ... Y SBrkr 1206 0 0 1206 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1959.0 RFn 1.0 312.0 TA TA Y 0 21 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1521 1522 20 RL 80.0 10032 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1959 1959 Gable CompShg Wd Sdng Wd Sdng Stone 432.0 TA TA CBlock TA TA No Rec 734.0 Unf 0.0 510.0 1244.0 GasA ... Y SBrkr 1580 0 0 1580 1.0 0.0 1 1 3 1 TA 6 Typ 2 Gd Attchd 1956.0 Unf 2.0 440.0 TA TA Y 0 28 0 0 160 0 NaN GdWo NaN 0 6 2010 WD Normal NaN
1522 1523 50 RL 60.0 8382 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Fin 4 5 1956 1956 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 832.0 832.0 GasA ... Y FuseA 832 505 0 1337 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1956.0 Unf 1.0 263.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 2 2010 WD Normal NaN
1523 1524 20 RL 60.0 10950 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1952 1952 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA TA No BLQ 339.0 Unf 0.0 525.0 864.0 GasA ... Y SBrkr 1064 0 0 1064 0.0 1.0 1 0 2 1 Fa 4 Typ 0 NaN Detchd 1952.0 Unf 1.0 318.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1524 1525 20 RL 119.0 10895 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 6 1955 1955 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No Rec 648.0 Unf 0.0 324.0 972.0 GasA ... Y SBrkr 972 0 0 972 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1955.0 Unf 1.0 305.0 TA TA Y 0 0 205 0 0 0 NaN GdWo NaN 0 6 2010 WD Normal NaN
1525 1526 190 RL 70.0 13587 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 2fmCon 1Story 5 5 1958 1958 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA Av Rec 532.0 Unf 0.0 456.0 988.0 GasA ... Y SBrkr 988 0 0 988 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1958.0 Unf 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Abnorml NaN
1526 1527 30 RL 65.0 7898 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 4 7 1920 1994 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 576.0 576.0 GasA ... Y SBrkr 985 0 0 985 0.0 1.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1989.0 Unf 2.0 676.0 TA TA N 0 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1527 1528 50 RL 60.0 8064 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Artery Norm 1Fam 1.5Fin 6 8 1948 2004 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA TA No ALQ 481.0 Rec 174.0 161.0 816.0 GasA ... Y SBrkr 816 408 0 1224 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1950.0 Unf 1.0 280.0 TA TA Y 414 0 0 0 0 0 NaN GdWo NaN 0 5 2010 WD Normal NaN
1528 1529 20 RL 81.0 7635 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 6 1960 1960 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 588.0 LwQ 350.0 237.0 1175.0 GasA ... Y SBrkr 1175 0 0 1175 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1960.0 RFn 2.0 484.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1529 1530 20 RL 80.0 9760 Pave NaN Reg Lvl AllPub Inside Mod NAmes Norm Norm 1Fam 1Story 6 7 1963 1984 Hip CompShg Wd Sdng Wd Sdng BrkFace 218.0 TA TA CBlock TA TA Gd BLQ 717.0 LwQ 263.0 415.0 1395.0 GasA ... Y SBrkr 1395 0 0 1395 1.0 0.0 1 0 2 1 TA 7 Min1 1 TA Attchd 1963.0 RFn 2.0 440.0 TA TA Y 657 0 113 0 240 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1530 1531 50 RM 60.0 4800 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1.5Fin 4 5 1900 1954 Hip CompShg Wd Sdng Wd Sdng BrkFace 771.0 TA TA PConc TA TA No ALQ 48.0 Unf 0.0 661.0 709.0 GasA ... Y SBrkr 1157 687 0 1844 1.0 0.0 1 0 3 1 TA 9 Min2 2 Gd Basment 1900.0 Unf 1.0 240.0 TA TA Y 84 0 0 0 0 0 NaN NaN NaN 0 1 2010 COD Abnorml NaN
1531 1532 30 RM 56.0 4485 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1Story 5 7 1920 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No BLQ 579.0 Unf 0.0 357.0 936.0 GasA ... Y SBrkr 936 0 0 936 1.0 0.0 1 0 2 1 TA 5 Typ 1 Gd NaN NaN NaN 0.0 0.0 NaN NaN P 51 0 135 0 0 0 NaN MnPrv NaN 0 5 2010 WD Normal NaN
1532 1533 20 RM 69.0 5805 Pave Grvl Reg Bnk AllPub Inside Mod OldTown Norm Norm 1Fam 1Story 5 7 1957 1957 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA Mn BLQ 274.0 Rec 1073.0 0.0 1347.0 GasA ... Y SBrkr 1347 0 0 1347 1.0 1.0 1 0 3 1 Gd 6 Typ 0 NaN Detchd 1957.0 Unf 2.0 551.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1533 1534 45 RM 50.0 6900 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1.5Fin 6 7 1938 2000 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 827.0 827.0 GasA ... Y SBrkr 827 424 0 1251 0.0 0.0 1 0 3 1 Fa 6 Typ 0 NaN Detchd 1938.0 Unf 1.0 240.0 Fa TA N 0 0 0 0 0 0 NaN NaN NaN 0 1 2010 WD Normal NaN
1534 1535 50 RM 69.0 11851 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1.5Fin 5 7 1948 2009 Gable CompShg VinylSd VinylSd None 0.0 TA Gd BrkTil TA TA No BLQ 780.0 Unf 0.0 247.0 1027.0 GasA ... Y SBrkr 1027 606 0 1633 0.0 0.0 1 0 3 1 Gd 7 Typ 1 Gd Detchd 1948.0 Unf 1.0 240.0 TA TA Y 0 100 126 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1535 1536 50 RM NaN 8239 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1.5Fin 5 6 1920 1962 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Rec 176.0 Unf 0.0 832.0 1008.0 GasA ... Y SBrkr 1060 185 0 1245 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1962.0 Unf 1.0 315.0 TA TA Y 0 0 334 0 0 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1536 1537 30 RM 68.0 9656 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 2 2 1923 1970 Gable CompShg AsbShng AsbShng None 0.0 TA Fa BrkTil Fa Fa No Unf 0.0 Unf 0.0 678.0 678.0 GasA ... N SBrkr 832 0 0 832 0.0 0.0 1 0 2 1 TA 5 Typ 1 Gd Detchd 1928.0 Unf 2.0 780.0 Fa Fa N 0 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Abnorml NaN
1537 1538 70 RM 60.0 9600 Pave Grvl Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 2Story 8 9 1900 2003 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd Gd BrkTil TA TA No Unf 0.0 Unf 0.0 930.0 930.0 GasW ... N SBrkr 930 636 0 1566 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Detchd 1930.0 Unf 1.0 288.0 TA TA Y 54 228 246 0 0 0 NaN NaN NaN 0 4 2010 WD Abnorml NaN
1538 1539 70 RM 50.0 9000 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 8 9 1890 2002 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd Gd Stone Fa Fa No Unf 0.0 Unf 0.0 346.0 346.0 GasA ... Y SBrkr 1157 1111 0 2268 0.0 0.0 3 0 3 1 Gd 7 Typ 0 NaN Detchd 2003.0 Unf 2.0 624.0 TA TA N 0 108 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1539 1540 190 RM 100.0 9045 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 2fmCon 2Story 5 3 1910 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Fa BrkTil TA TA Mn Unf 0.0 Unf 0.0 840.0 840.0 Grav ... N FuseF 1128 1128 0 2256 0.0 0.0 2 0 4 2 Fa 12 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 18 18 0 0 0 NaN NaN NaN 0 6 2010 WD Abnorml NaN
1540 1541 70 RM 60.0 10560 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 6 7 1922 1994 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock Fa TA No Rec 283.0 Unf 0.0 455.0 738.0 GasA ... Y SBrkr 868 602 0 1470 0.0 0.0 1 1 2 1 TA 6 Min1 0 NaN Detchd 1970.0 Unf 2.0 624.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1541 1542 50 RM 53.0 5830 Pave NaN Reg Lvl AllPub Corner Gtl BrkSide Feedr Feedr 1Fam 1.5Fin 5 6 1950 1997 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No Rec 788.0 Unf 0.0 200.0 988.0 GasA ... Y SBrkr 1030 582 0 1612 0.0 0.0 1 1 3 1 TA 7 Typ 0 NaN Detchd 1950.0 Unf 1.0 363.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 3 2010 WD Normal NaN
1542 1543 75 RL NaN 7793 Pave NaN IR1 Bnk AllPub Corner Gtl BrkSide Norm Norm 1Fam 2.5Unf 7 7 1922 2005 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Gd TA No BLQ 474.0 Unf 0.0 634.0 1108.0 GasA ... N FuseA 1160 908 0 2068 0.0 0.0 1 1 3 1 Gd 8 Typ 1 Gd Detchd 1928.0 Unf 1.0 315.0 TA TA Y 0 0 60 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1543 1544 30 RM 50.0 5000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Feedr Norm 1Fam 1Story 4 7 1925 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Rec 188.0 Unf 0.0 577.0 765.0 GasA ... N FuseF 765 0 0 765 1.0 0.0 1 0 2 1 Gd 4 Typ 0 NaN Detchd 1926.0 Unf 1.0 200.0 Fa TA P 135 0 41 0 0 0 NaN MnPrv NaN 0 4 2010 WD Normal NaN
1544 1545 50 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 7 1939 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA Gd No BLQ 452.0 LwQ 12.0 144.0 608.0 GasA ... Y SBrkr 608 524 0 1132 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1939.0 Unf 1.0 240.0 TA TA Y 0 0 128 0 0 0 NaN MnPrv NaN 0 4 2010 WD Abnorml NaN
1545 1546 50 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 6 1940 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No LwQ 264.0 Unf 0.0 308.0 572.0 GasA ... Y FuseA 848 348 0 1196 0.0 1.0 1 1 3 1 TA 6 Typ 2 Gd Detchd 1973.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1546 1547 50 RM 53.0 6360 Pave NaN Reg Lvl AllPub Corner Gtl BrkSide Feedr Norm 1Fam 1.5Fin 5 6 1942 1950 Gable CompShg MetalSd MetalSd Stone 300.0 TA TA CBlock TA TA No Rec 360.0 LwQ 159.0 316.0 835.0 GasA ... Y FuseA 955 498 0 1453 0.0 0.0 1 1 3 1 Gd 7 Min2 2 Fa Detchd 1942.0 Unf 1.0 240.0 TA TA Y 0 0 35 0 148 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1547 1548 50 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 7 1948 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 300.0 Unf 0.0 480.0 780.0 GasA ... Y SBrkr 780 636 0 1416 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1948.0 Unf 1.0 312.0 TA TA P 221 0 48 0 0 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1548 1549 50 RM 52.0 6240 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 7 1936 1980 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA Fa No Rec 276.0 Unf 0.0 252.0 528.0 GasA ... Y SBrkr 548 492 0 1040 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1979.0 Fin 2.0 624.0 TA TA P 306 0 32 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1549 1550 50 RM 52.0 6240 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 5 1930 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No LwQ 448.0 Unf 0.0 480.0 928.0 GasA ... Y FuseF 928 608 0 1536 0.0 0.0 2 0 4 1 TA 7 Typ 1 Gd Detchd 1930.0 Unf 2.0 480.0 TA TA Y 0 10 0 0 0 0 NaN MnPrv NaN 0 3 2010 WD Normal NaN
1550 1551 30 RM 51.0 6120 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1Story 6 5 1923 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Fa Fa No ALQ 960.0 Unf 0.0 164.0 1124.0 GasA ... Y SBrkr 1068 0 0 1068 1.0 0.0 1 0 2 1 TA 5 Typ 1 Gd Detchd 1923.0 Unf 1.0 288.0 TA TA Y 0 0 128 0 0 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1551 1552 50 RM 57.0 8094 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 4 5 1915 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Fa CBlock TA TA No Unf 0.0 Unf 0.0 888.0 888.0 GasA ... Y SBrkr 888 1074 0 1962 0.0 0.0 1 1 4 1 TA 9 Typ 1 TA Detchd 1915.0 Unf 2.0 572.0 TA TA Y 160 0 364 0 0 0 NaN GdPrv NaN 0 6 2010 WD Normal NaN
1552 1553 70 RM 60.0 12900 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 6 8 1912 2009 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd Gd PConc TA TA No Unf 0.0 Unf 0.0 780.0 780.0 GasA ... Y SBrkr 780 780 0 1560 0.0 0.0 1 1 3 1 Gd 7 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 344 0 0 0 168 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1553 1554 70 RM 52.0 3068 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 6 8 1920 1993 Gable CompShg VinylSd VinylSd None 0.0 TA Gd BrkTil TA TA No Unf 0.0 Unf 0.0 662.0 662.0 GasA ... Y SBrkr 662 662 0 1324 0.0 1.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1920.0 Unf 1.0 180.0 TA TA Y 0 0 112 0 0 0 NaN GdPrv NaN 0 2 2010 WD Normal NaN
1554 1555 20 RL 100.0 15263 Pave NaN IR1 Lvl AllPub Inside Gtl ClearCr Feedr Norm 1Fam 1Story 5 5 1959 1959 Gable CompShg HdBoard HdBoard BrkFace 90.0 TA TA CBlock Gd TA No Rec 766.0 Unf 0.0 656.0 1422.0 GasA ... Y SBrkr 1675 0 0 1675 0.0 0.0 2 0 3 1 TA 8 Typ 2 Gd Attchd 1959.0 Unf 1.0 365.0 TA TA Y 0 132 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1555 1556 50 RL 72.0 10632 Pave NaN IR1 Lvl AllPub Inside Gtl ClearCr Norm Norm 1Fam 1.5Fin 5 3 1917 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Gd Fa No Unf 0.0 Unf 0.0 689.0 689.0 GasA ... N SBrkr 725 499 0 1224 0.0 0.0 1 1 3 1 NaN 6 Mod 0 NaN Detchd 1917.0 Unf 1.0 180.0 Fa Fa N 0 0 248 0 0 0 NaN NaN NaN 0 1 2010 COD Normal NaN
1556 1557 190 RL 60.0 9900 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Norm Norm 2fmCon 1.5Fin 5 4 1915 1950 Gable CompShg Wd Sdng Wd Shng None 0.0 Fa Fa BrkTil TA TA No Rec 1026.0 Unf 0.0 186.0 1212.0 GasA ... N SBrkr 1212 180 0 1392 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 168 0 0 0 NaN NaN NaN 0 2 2010 ConLD Normal NaN
1557 1558 50 RL 65.0 6001 Pave NaN IR1 Bnk AllPub Inside Mod SWISU Norm Norm 1Fam 1.5Fin 6 5 1940 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock Fa TA No LwQ 368.0 Unf 0.0 232.0 600.0 GasA ... N SBrkr 600 319 0 919 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1940.0 Unf 1.0 231.0 TA TA Y 0 0 45 0 0 0 NaN MnPrv NaN 0 3 2010 WD Normal NaN
1558 1559 70 C (all) NaN 6449 Pave NaN IR1 Lvl AllPub Inside Gtl SWISU Norm Norm 1Fam 2Story 4 1 1907 1950 Gambrel CompShg Wd Sdng Stucco None 0.0 TA TA CBlock TA TA No Rec 73.0 Unf 0.0 634.0 707.0 GasW ... N SBrkr 942 942 0 1884 0.0 0.0 1 1 4 1 TA 7 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 239 0 0 0 NaN NaN NaN 0 3 2010 WD Abnorml NaN
1559 1560 190 RH 60.0 6048 Pave NaN Reg Lvl AllPub Corner Gtl SWISU Artery Norm 2fmCon 1.5Fin 5 7 1910 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd BrkTil TA TA Mn LwQ 736.0 Unf 0.0 120.0 856.0 GasA ... Y SBrkr 936 744 0 1680 1.0 0.0 2 0 2 2 TA 7 Typ 1 Gd Detchd 1910.0 Unf 2.0 450.0 TA Fa P 56 144 0 0 0 0 NaN NaN NaN 0 6 2010 COD Normal NaN
1560 1561 90 RL 72.0 10773 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm Duplex 1Story 4 3 1967 1967 Gable Tar&Grv Plywood Plywood BrkFace 72.0 Fa Fa CBlock TA TA No ALQ 704.0 Unf 0.0 1128.0 1832.0 GasA ... N SBrkr 1832 0 0 1832 2.0 0.0 2 0 4 2 TA 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 58 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1561 1562 20 RL 65.0 7800 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 7 1966 2008 Hip CompShg HdBoard HdBoard BrkFace 47.0 TA TA CBlock TA TA Mn BLQ 240.0 Rec 474.0 150.0 864.0 GasA ... Y SBrkr 892 0 0 892 1.0 0.0 1 0 3 1 Gd 5 Typ 0 NaN Detchd 1966.0 Unf 1.0 416.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1562 1563 20 RL 65.0 7832 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1968 1968 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No GLQ 775.0 Unf 0.0 89.0 864.0 GasA ... Y SBrkr 864 0 0 864 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1969.0 Unf 1.0 280.0 TA TA Y 226 0 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1563 1564 90 RL NaN 7424 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm Duplex SFoyer 5 5 1978 1978 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA Av GLQ 1319.0 Unf 0.0 0.0 1319.0 GasA ... Y SBrkr 1373 0 0 1373 1.0 0.0 1 0 3 1 TA 5 Typ 2 TA Attchd 1978.0 Fin 2.0 591.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1564 1565 60 RL 86.0 11227 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 2Story 5 5 1968 1968 Gable CompShg HdBoard HdBoard None 0.0 TA Gd CBlock TA Gd No Rec 267.0 ALQ 453.0 0.0 720.0 GasA ... Y SBrkr 720 720 0 1440 0.0 0.0 1 1 4 1 TA 7 Typ 2 TA Attchd 1968.0 Unf 2.0 480.0 TA TA Y 192 38 0 0 0 0 NaN MnPrv NaN 0 3 2010 WD Normal NaN
1565 1566 20 RL NaN 20062 Pave NaN IR1 Low AllPub Inside Mod ClearCr Norm Norm 1Fam 1Story 7 7 1977 2001 Hip CompShg Wd Sdng Wd Sdng None 0.0 Gd Gd CBlock Gd TA Gd ALQ 1092.0 Unf 0.0 328.0 1420.0 GasA ... Y SBrkr 1483 0 0 1483 1.0 0.0 1 1 1 1 TA 4 Typ 2 TA Attchd 1977.0 RFn 2.0 690.0 TA TA Y 496 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1566 1567 30 RL 94.0 9259 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Feedr Norm 1Fam 1Story 4 4 1927 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Fa TA No Unf 0.0 Unf 0.0 660.0 660.0 GasA ... N SBrkr 756 0 0 756 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1945.0 Unf 2.0 440.0 TA TA N 80 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1567 1568 60 RL NaN 17082 Pave NaN IR1 Low AllPub CulDSac Mod ClearCr Norm Norm 1Fam 2Story 6 5 1978 1992 Gable CompShg VinylSd VinylSd BrkFace 288.0 TA TA PConc Gd TA Av ALQ 964.0 Unf 0.0 153.0 1117.0 GasA ... Y SBrkr 1117 864 0 1981 1.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Attchd 1978.0 Fin 2.0 522.0 TA TA Y 336 104 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1568 1569 50 RL 124.0 18600 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 3 4 1938 1990 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Mn BLQ 288.0 LwQ 684.0 0.0 972.0 GasA ... Y FuseA 1052 558 0 1610 0.0 1.0 2 0 4 1 Fa 8 Typ 1 Gd Attchd 1938.0 RFn 1.0 480.0 TA TA Y 0 0 60 0 0 0 NaN NaN Shed 450 6 2010 WD Normal NaN
1569 1570 20 RL 65.0 11479 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 6 7 1950 1987 Gable CompShg Wd Sdng Plywood None 0.0 TA TA CBlock TA TA No GLQ 104.0 Rec 387.0 172.0 663.0 GasA ... Y SBrkr 1074 0 0 1074 1.0 0.0 1 0 3 1 Gd 6 Typ 1 TA Attchd 1987.0 Unf 1.0 467.0 TA TA Y 0 52 52 0 0 0 NaN MnPrv NaN 0 6 2010 WD Normal NaN
1570 1571 50 RL 50.0 9350 Pave NaN Reg Bnk AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 4 6 1947 1979 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA Fa No LwQ 192.0 Unf 0.0 564.0 756.0 GasA ... Y SBrkr 1169 0 362 1531 0.0 0.0 1 0 3 1 TA 8 Typ 1 TA Detchd 1947.0 Unf 1.0 209.0 Fa TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 6 2010 WD Normal NaN
1571 1572 20 RL 75.0 9525 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 7 1954 1998 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA TA Av BLQ 954.0 Unf 0.0 218.0 1172.0 GasA ... Y SBrkr 1172 0 0 1172 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1954.0 Fin 1.0 366.0 TA TA Y 240 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1572 1573 20 RL 44.0 17485 Pave NaN IR2 Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 7 5 2009 2010 Gable CompShg VinylSd VinylSd Stone 96.0 Gd TA PConc Gd TA Gd GLQ 1346.0 Unf 0.0 162.0 1508.0 GasA ... Y SBrkr 1508 0 0 1508 1.0 0.0 1 0 1 1 Gd 5 Typ 2 TA Attchd 2009.0 RFn 2.0 572.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 1 2010 Con Partial NaN
1573 1574 20 RL NaN 11200 Pave NaN IR1 Lvl AllPub CulDSac Gtl Edwards Norm Norm 1Fam 1Story 5 3 1964 1964 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Fa CBlock TA TA Mn Unf 0.0 Unf 0.0 1250.0 1250.0 GasA ... Y SBrkr 1298 0 0 1298 0.0 0.0 2 0 3 1 TA 5 Typ 0 NaN Detchd 1964.0 Unf 2.0 504.0 TA Fa N 0 144 0 0 0 0 NaN NaN NaN 0 6 2010 COD Normal NaN
1574 1575 20 RL 83.0 11980 Pave NaN Reg Low AllPub Inside Mod SawyerW Norm Norm 1Fam 1Story 7 5 1987 1987 Gable CompShg Plywood Plywood BrkFace 177.0 Gd TA CBlock Gd TA Gd GLQ 1433.0 Unf 0.0 0.0 1433.0 GasA ... Y SBrkr 1433 0 0 1433 1.0 0.0 1 1 1 1 Gd 4 Typ 2 TA Attchd 1987.0 RFn 2.0 528.0 Gd Gd Y 0 278 0 0 266 0 NaN MnPrv NaN 0 6 2010 WD Normal NaN
1575 1576 60 RL 87.0 12361 Pave NaN IR1 Lvl AllPub CulDSac Gtl SawyerW Norm Norm 1Fam 2Story 6 7 1993 1993 Gable CompShg VinylSd VinylSd BrkFace 85.0 Gd Gd PConc Gd TA No GLQ 860.0 Unf 0.0 86.0 946.0 GasA ... Y SBrkr 964 838 0 1802 0.0 1.0 2 1 3 1 Gd 8 Typ 1 Gd 2Types 2000.0 RFn 4.0 1017.0 TA TA Y 450 92 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1576 1577 20 RL 64.0 7360 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2010 2010 Gable CompShg VinylSd VinylSd Stone 80.0 Gd TA PConc Gd TA No GLQ 24.0 Unf 0.0 1198.0 1222.0 GasA ... Y SBrkr 1222 0 0 1222 0.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 2009.0 RFn 2.0 615.0 TA TA Y 0 54 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1577 1578 50 RL 82.0 14235 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1.5Fin 6 8 1900 1993 Gable CompShg Wd Sdng Plywood None 0.0 TA TA PConc Fa Gd No Unf 0.0 Unf 0.0 676.0 676.0 GasA ... Y SBrkr 831 614 0 1445 0.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Detchd 1957.0 Unf 2.0 484.0 TA TA N 0 59 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1578 1579 85 RL 82.0 11105 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam SFoyer 5 5 1996 1996 Gable CompShg VinylSd VinylSd None 0.0 TA Gd PConc Gd Fa Av GLQ 870.0 Unf 0.0 0.0 870.0 GasA ... Y SBrkr 965 0 0 965 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1998.0 Unf 2.0 580.0 Gd TA Y 71 0 0 0 0 0 NaN GdPrv NaN 0 7 2010 WD Normal NaN
1579 1580 60 RL NaN 9337 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1997 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No ALQ 353.0 Unf 0.0 525.0 878.0 GasA ... Y SBrkr 892 800 0 1692 0.0 0.0 2 1 3 1 TA 8 Typ 1 TA Attchd 1997.0 RFn 2.0 513.0 TA TA Y 0 39 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1580 1581 20 RL 38.0 15240 Pave NaN IR1 Lvl AllPub FR2 Gtl CollgCr Norm Norm 1Fam 1Story 5 8 1977 2004 Gable CompShg CemntBd CmentBd None 0.0 Gd Gd CBlock Gd TA No GLQ 198.0 Rec 688.0 140.0 1026.0 GasA ... Y SBrkr 1026 0 0 1026 1.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Attchd 1977.0 Unf 1.0 308.0 TA TA Y 316 85 0 0 0 0 NaN MnPrv NaN 0 6 2010 WD Normal NaN
1581 1582 20 RL 68.0 7480 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 6 1972 1972 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Av ALQ 480.0 Unf 0.0 396.0 876.0 GasA ... Y SBrkr 876 0 0 876 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1977.0 Unf 2.0 484.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 6 2010 WD Normal NaN
1582 1583 20 RL 80.0 10389 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2003 2003 Hip CompShg CemntBd CmentBd BrkFace 320.0 Gd TA PConc Gd TA No GLQ 1682.0 Unf 0.0 296.0 1978.0 GasA ... Y SBrkr 1978 0 0 1978 1.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2003.0 RFn 3.0 850.0 TA TA Y 188 25 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1583 1584 60 RL 75.0 9375 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1997 1997 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1040.0 1040.0 GasA ... Y SBrkr 1044 1054 0 2098 0.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1997.0 Fin 2.0 621.0 TA TA Y 331 38 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1584 1585 120 RM NaN 4435 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm TwnhsE 1Story 6 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 170.0 Gd TA PConc Gd TA Av GLQ 672.0 Unf 0.0 176.0 848.0 GasA ... Y SBrkr 848 0 0 848 1.0 0.0 1 0 1 1 Gd 4 Typ 0 NaN Attchd 2003.0 Fin 2.0 420.0 TA TA Y 140 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1585 1586 30 RL 67.0 8777 Pave NaN Reg Lvl AllPub Inside Mod Edwards Feedr Norm 1Fam 1Story 3 6 1945 2007 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N SBrkr 640 0 0 640 0.0 0.0 1 0 2 1 TA 5 Min1 0 NaN Detchd 1945.0 Unf 1.0 240.0 TA TA N 0 0 0 0 0 0 NaN NaN NaN 0 4 2010 ConLD Normal NaN
1586 1587 20 RL 68.0 8842 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 1Story 5 6 1954 1954 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock Fa TA No Unf 0.0 Unf 0.0 381.0 381.0 GasA ... Y SBrkr 992 0 0 992 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1954.0 Unf 1.0 319.0 TA TA Y 60 0 56 0 0 0 NaN MnPrv NaN 0 1 2010 Oth Abnorml NaN
1587 1588 20 RL 60.0 10044 Pave NaN IR1 Low AllPub CulDSac Gtl Edwards Norm Norm 1Fam 1Story 5 6 1968 1968 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Gd TA Gd ALQ 1070.0 Unf 0.0 126.0 1196.0 GasA ... Y SBrkr 1196 0 0 1196 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1968.0 RFn 1.0 336.0 TA TA Y 257 0 168 0 0 0 NaN MnPrv NaN 0 6 2010 WD Normal NaN
1588 1589 50 RL 89.0 11792 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 4 5 1948 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 744.0 744.0 GasA ... N FuseF 792 328 0 1120 0.0 0.0 1 0 2 1 Fa 5 Typ 0 NaN Detchd 1956.0 Unf 2.0 480.0 TA Fa P 0 0 0 0 160 0 NaN NaN NaN 0 6 2010 WD Abnorml NaN
1589 1590 80 RL 65.0 6305 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam SLvl 6 6 1975 1975 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA Av ALQ 528.0 Unf 0.0 480.0 1008.0 GasA ... Y SBrkr 1096 0 0 1096 1.0 0.0 1 0 3 1 TA 5 Typ 1 Fa Detchd 1975.0 Unf 1.0 352.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1590 1591 20 RL 64.0 6410 Pave NaN Reg HLS AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 5 1958 1958 Hip CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 960.0 960.0 GasA ... Y SBrkr 960 0 0 960 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN MnPrv NaN 0 5 2010 WD Normal NaN
1591 1592 30 RL 67.0 4853 Pave NaN Reg Bnk AllPub Inside Gtl SWISU Artery Norm 1Fam 1Story 5 6 1924 1999 Gable CompShg MetalSd VinylSd BrkFace 203.0 TA TA BrkTil TA TA Mn Rec 133.0 Unf 0.0 974.0 1107.0 GasA ... N FuseA 1296 0 0 1296 0.0 0.0 2 0 2 1 Fa 5 Typ 1 Gd Detchd 1979.0 Unf 1.0 260.0 TA TA Y 0 0 36 0 0 0 NaN MnPrv NaN 0 5 2010 WD Normal NaN
1592 1593 30 RL NaN 7890 Pave NaN Reg Lvl AllPub Corner Gtl SWISU Norm Norm 1Fam 1Story 6 6 1939 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 238.0 Unf 0.0 618.0 856.0 GasA ... Y SBrkr 856 0 0 856 1.0 0.0 1 0 2 1 TA 4 Typ 1 Gd Detchd 1939.0 Unf 2.0 399.0 TA TA Y 0 0 0 0 166 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1593 1594 90 RH 60.0 7200 Pave Pave Reg Lvl AllPub Inside Gtl SWISU Norm Norm Duplex 2Story 4 6 1967 1967 Flat Tar&Grv Plywood CBlock None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 862 1788 0 2650 0.0 0.0 3 0 6 2 TA 10 Min2 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN Shed 500 2 2010 WD Normal NaN
1594 1595 50 RL 51.0 9839 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Feedr Norm 1Fam 1.5Fin 5 2 1931 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc TA Fa No Unf 0.0 Unf 0.0 894.0 894.0 GasA ... Y SBrkr 894 772 0 1666 1.0 0.0 1 0 3 1 TA 7 Typ 1 Gd NaN NaN NaN 0.0 0.0 NaN NaN N 0 156 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1595 1596 50 RL 78.0 10452 Pave NaN IR1 Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1.5Fin 7 6 1941 1985 Gable CompShg Wd Sdng Wd Sdng BrkFace 371.0 Gd Gd BrkTil Gd TA No ALQ 426.0 BLQ 252.0 850.0 1528.0 GasA ... Y SBrkr 1225 908 0 2133 1.0 0.0 1 1 4 1 TA 8 Typ 2 TA Attchd 1941.0 Unf 1.0 312.0 TA TA Y 0 0 86 0 0 0 NaN NaN NaN 0 7 2010 WD Normal NaN
1596 1597 90 RL 78.0 15600 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm Duplex 2Story 5 6 1950 1991 Gable CompShg VinylSd VinylSd BrkFace 430.0 TA Gd CBlock TA TA No ALQ 375.0 Unf 0.0 657.0 1032.0 GasA ... Y SBrkr 1102 1075 0 2177 0.0 0.0 2 1 5 2 TA 11 Typ 0 NaN Detchd 1950.0 Unf 2.0 484.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1597 1598 80 RL 85.0 19645 Pave NaN IR1 Lvl AllPub FR2 Gtl Crawfor Norm Norm 1Fam SLvl 7 6 1994 2007 Gable CompShg VinylSd VinylSd BrkFace 44.0 TA TA PConc Gd TA No GLQ 343.0 Unf 0.0 80.0 423.0 GasA ... Y SBrkr 896 756 0 1652 1.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN BuiltIn 1994.0 RFn 2.0 473.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1598 1599 120 RM 35.0 3907 Pave NaN IR1 HLS AllPub Inside Mod Blueste Norm Norm TwnhsE 1Story 8 6 1989 1989 Gable CompShg HdBoard HdBoard None 0.0 Gd TA CBlock Gd TA Gd GLQ 747.0 Unf 0.0 235.0 982.0 GasA ... Y SBrkr 1034 0 0 1034 1.0 0.0 1 0 1 1 Gd 4 Typ 1 TA Attchd 1989.0 Fin 2.0 598.0 TA TA Y 141 36 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1599 1600 120 RM 35.0 3907 Pave NaN IR1 HLS AllPub Inside Mod Blueste Norm Norm TwnhsE 1Story 8 5 1989 1989 Gable CompShg HdBoard HdBoard None 0.0 Gd TA CBlock Gd TA Av GLQ 76.0 Unf 0.0 1115.0 1191.0 GasA ... Y SBrkr 1191 0 0 1191 0.0 0.0 2 0 2 1 Gd 5 Typ 1 TA Attchd 1989.0 Unf 2.0 531.0 TA TA Y 112 81 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1600 1601 30 RM 58.0 8154 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 2 5 1941 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No BLQ 480.0 Unf 0.0 0.0 480.0 GasA ... Y SBrkr 540 0 0 540 0.0 0.0 1 0 1 1 TA 4 Typ 0 NaN Detchd 1951.0 Unf 1.0 200.0 Fa Fa N 0 0 0 0 0 0 NaN NaN NaN 0 4 2010 ConLw Normal NaN
1601 1602 50 RM 50.0 9140 Pave NaN Reg HLS AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 6 5 1921 1975 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA Mn BLQ 308.0 Unf 0.0 321.0 629.0 GasA ... Y SBrkr 727 380 0 1107 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1950.0 Unf 1.0 625.0 TA TA Y 0 56 0 0 200 0 NaN MnPrv NaN 0 4 2010 COD Normal NaN
1602 1603 30 C (all) 66.0 8712 Grvl NaN Reg Lvl AllPub Corner Gtl IDOTRR Norm Norm 1Fam 1Story 4 7 1896 1950 Hip CompShg Wd Sdng Wd Sdng None 0.0 Fa Fa CBlock TA TA No Unf 0.0 Unf 0.0 756.0 756.0 GasA ... Y SBrkr 952 0 0 952 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1896.0 RFn 1.0 330.0 TA TA N 0 0 265 0 0 0 NaN NaN NaN 0 6 2010 WD Alloca NaN
1603 1604 120 RM 44.0 3811 Pave NaN IR1 HLS AllPub Corner Mod Crawfor Artery Norm TwnhsE 1Story 8 5 2004 2005 Hip CompShg CemntBd CmentBd Stone 186.0 Gd TA PConc Ex TA Gd GLQ 1373.0 Unf 0.0 221.0 1594.0 GasA ... Y SBrkr 1646 0 0 1646 1.0 1.0 2 0 2 1 Gd 5 Typ 1 Gd Attchd 2004.0 Fin 2.0 525.0 TA TA Y 128 53 0 0 155 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1604 1605 60 RL 85.0 11050 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 2Story 8 5 1998 1999 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 615.0 Unf 0.0 434.0 1049.0 GasA ... Y SBrkr 1036 880 0 1916 1.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1998.0 Unf 3.0 741.0 TA TA Y 0 70 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1605 1606 80 RL 74.0 9620 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam SLvl 6 7 1977 1977 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No ALQ 679.0 Unf 0.0 564.0 1243.0 GasA ... Y SBrkr 1285 0 0 1285 0.0 1.0 2 0 3 1 Gd 6 Typ 1 Fa Attchd 1977.0 Unf 2.0 473.0 TA TA Y 375 26 0 0 0 0 NaN GdPrv Shed 80 5 2010 WD Normal NaN
1606 1607 90 RL NaN 12760 Pave NaN IR1 Lvl AllPub Inside Gtl Mitchel Norm Norm Duplex 1Story 6 5 1976 1976 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1958.0 1958.0 GasA ... Y SBrkr 2048 0 0 2048 0.0 0.0 3 0 5 2 TA 9 Typ 0 NaN 2Types 1976.0 Unf 2.0 776.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2010 ConLD Normal NaN
1607 1608 20 RL 88.0 11896 Pave NaN IR1 Lvl AllPub Corner Gtl Timber Norm Norm 1Fam 1Story 7 5 2008 2008 Gable CompShg VinylSd VinylSd Stone 60.0 Gd TA PConc Gd TA No GLQ 78.0 Unf 0.0 1258.0 1336.0 GasA ... Y SBrkr 1346 0 0 1346 1.0 0.0 2 0 3 1 Gd 6 Typ 1 TA Attchd 2008.0 Fin 3.0 660.0 TA TA Y 100 48 0 0 0 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1608 1609 20 RL 73.0 9803 Pave NaN Reg Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 7 5 2009 2010 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1214.0 1214.0 GasA ... Y SBrkr 1214 0 0 1214 0.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 2010.0 RFn 2.0 520.0 TA TA Y 0 25 0 0 0 0 NaN NaN NaN 0 1 2010 New Partial NaN
1609 1610 60 RL 73.0 9802 Pave NaN Reg Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 2Story 5 5 2006 2007 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 384.0 384.0 GasA ... Y SBrkr 744 700 0 1444 0.0 0.0 2 1 3 1 TA 7 Typ 0 NaN BuiltIn 2007.0 Fin 2.0 400.0 TA TA Y 100 0 0 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1610 1611 20 RL 85.0 15300 Pave NaN Reg Bnk AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 5 1965 1977 Hip CompShg Plywood HdBoard None 0.0 TA TA CBlock TA TA No Rec 42.0 Unf 0.0 1026.0 1068.0 GasA ... Y SBrkr 1264 0 0 1264 1.0 0.0 1 0 2 1 TA 7 Typ 1 TA Attchd 1965.0 Unf 2.0 528.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1611 1612 20 RL 93.0 10114 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 5 2004 2005 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Ex TA Av Unf 0.0 Unf 0.0 1430.0 1430.0 GasA ... Y SBrkr 1430 0 0 1430 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2004.0 RFn 2.0 624.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1612 1613 20 RL NaN 11875 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 5 1999 1999 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1344.0 1344.0 GasA ... Y SBrkr 1344 0 0 1344 0.0 0.0 2 0 3 1 TA 7 Typ 1 Gd Attchd 2001.0 Unf 2.0 686.0 TA TA Y 328 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1613 1614 120 RM 31.0 2394 Pave NaN Reg Low AllPub Inside Mod MeadowV Norm Norm Twnhs 1Story 5 6 1973 1973 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock Gd TA Gd GLQ 915.0 Unf 0.0 30.0 945.0 GasA ... Y SBrkr 945 0 0 945 1.0 1.0 1 0 2 1 TA 5 Typ 1 Po Attchd 1973.0 RFn 1.0 253.0 TA TA Y 174 0 56 0 108 0 NaN NaN NaN 0 5 2010 WD Normal NaN
1614 1615 160 RM 21.0 1476 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs 2Story 4 7 1970 1970 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock TA TA No GLQ 176.0 Unf 0.0 370.0 546.0 GasA ... Y SBrkr 546 546 0 1092 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 200 26 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1615 1616 160 RM 21.0 1900 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 2Story 4 4 1970 1970 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 546.0 546.0 GasA ... Y SBrkr 546 546 0 1092 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1616 1617 160 RM 21.0 1890 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 2Story 4 6 1972 1972 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock TA TA No Rec 294.0 Unf 0.0 252.0 546.0 GasA ... Y SBrkr 546 546 0 1092 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Attchd 1972.0 Unf 1.0 286.0 TA TA Y 0 0 64 0 0 0 NaN NaN NaN 0 6 2010 WD Normal NaN
1617 1618 20 RL 50.0 6953 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 7 1971 2004 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA TA No ALQ 469.0 Unf 0.0 395.0 864.0 GasA ... Y SBrkr 874 0 0 874 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1971.0 Unf 1.0 352.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2010 ConLD Normal NaN
1618 1619 20 RL 76.0 12887 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 7 1984 1984 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock Gd TA Mn Rec 207.0 GLQ 590.0 36.0 833.0 GasA ... Y SBrkr 833 0 0 833 1.0 0.0 1 0 2 1 Gd 5 Typ 0 NaN Attchd 1984.0 Unf 2.0 495.0 TA TA Y 431 0 0 0 0 0 NaN MnPrv NaN 0 4 2010 WD Normal NaN
1619 1620 90 RL 70.0 7700 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm Duplex 2Story 5 2 1985 1986 Gable CompShg HdBoard HdBoard None 0.0 TA Po PConc TA TA No Unf 0.0 Unf 0.0 1216.0 1216.0 GasA ... Y SBrkr 1216 1216 0 2432 0.0 0.0 4 2 4 2 TA 10 Typ 0 NaN Attchd 1985.0 Unf 2.0 616.0 TA Fa Y 200 0 0 0 0 0 NaN NaN Shed 600 2 2010 WD Normal NaN
1620 1621 60 RL 63.0 10475 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 2Story 5 5 1991 1991 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No Rec 458.0 Unf 0.0 166.0 624.0 GasA ... Y SBrkr 624 650 0 1274 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1993.0 Unf 2.0 576.0 TA TA Y 22 0 0 0 0 0 NaN GdWo NaN 0 3 2010 WD Normal NaN
1621 1622 50 RL 68.0 10544 Pave NaN IR1 Lvl AllPub Inside Mod Mitchel Norm Norm 1Fam 1.5Fin 5 5 1969 1969 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA Av BLQ 476.0 Unf 0.0 388.0 864.0 GasA ... Y SBrkr 864 615 0 1479 0.0 0.0 2 0 5 1 TA 8 Typ 0 NaN Attchd 1969.0 Fin 1.0 275.0 TA TA Y 287 0 280 0 0 0 NaN NaN NaN 0 4 2010 WD Normal NaN
1622 1623 20 RL 76.0 9892 Pave NaN Reg Lvl AllPub Inside Mod Mitchel Norm Norm 1Fam 1Story 8 5 1994 1995 Hip CompShg VinylSd VinylSd None 0.0 Gd Gd PConc Gd Gd Gd GLQ 1341.0 LwQ 284.0 54.0 1679.0 GasA ... Y SBrkr 1803 0 0 1803 1.0 1.0 2 1 3 1 Gd 6 Typ 2 TA Attchd 1994.0 Unf 2.0 482.0 TA TA Y 129 64 222 0 0 0 NaN GdWo NaN 0 2 2010 WD Normal NaN
1623 1624 60 RL 74.0 12961 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 2Story 6 5 1993 1994 Gable CompShg VinylSd VinylSd None 0.0 Gd Gd PConc Gd TA Mn GLQ 944.0 Unf 0.0 208.0 1152.0 GasA ... Y SBrkr 1152 645 0 1797 1.0 0.0 2 1 3 1 Gd 7 Typ 1 Fa Attchd 1993.0 Fin 2.0 616.0 TA TA Y 162 312 0 0 0 0 NaN NaN NaN 0 3 2010 WD Normal NaN
1624 1625 20 RL 74.0 13008 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1956 1956 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Fa Fa No Rec 564.0 Unf 0.0 318.0 882.0 GasA ... Y SBrkr 882 0 0 882 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1956.0 Unf 1.0 502.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1625 1626 20 RL 85.0 10200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1974 1974 Hip CompShg Plywood Plywood BrkFace 440.0 TA TA CBlock TA TA No LwQ 844.0 Unf 0.0 590.0 1434.0 GasA ... Y SBrkr 1434 0 0 1434 1.0 0.0 2 0 4 1 TA 7 Typ 1 Gd Attchd 1974.0 RFn 2.0 528.0 TA TA Y 80 21 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1626 1627 60 RL 88.0 10179 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1997 1997 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No ALQ 847.0 Unf 0.0 98.0 945.0 GasA ... Y SBrkr 945 663 0 1608 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1997.0 Fin 2.0 470.0 TA TA Y 252 30 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1627 1628 60 RL NaN 11792 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 8 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 188.0 Gd TA PConc Gd TA Gd GLQ 850.0 Unf 0.0 158.0 1008.0 GasA ... Y SBrkr 1008 1275 0 2283 0.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd BuiltIn 2003.0 Fin 3.0 632.0 TA TA Y 120 46 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1628 1629 80 RL 60.0 8400 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam SLvl 7 5 1996 1997 Gable CompShg HdBoard HdBoard BrkFace 32.0 TA TA PConc Gd TA No GLQ 284.0 Unf 0.0 100.0 384.0 GasA ... Y SBrkr 958 670 0 1628 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA BuiltIn 1996.0 Fin 2.0 390.0 TA TA Y 48 72 0 0 0 0 NaN NaN Shed 490 6 2009 WD Normal NaN
1629 1630 120 RL 28.0 7296 Pave NaN IR1 Lvl AllPub CulDSac Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 2004 2005 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Ex TA Av GLQ 1965.0 Unf 0.0 243.0 2208.0 GasA ... Y SBrkr 2522 0 0 2522 1.0 0.0 2 0 1 1 Gd 8 Typ 1 Gd Attchd 2004.0 Fin 2.0 564.0 TA TA Y 182 57 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal NaN
1630 1631 120 RL 61.0 7380 Pave NaN IR1 Lvl AllPub Corner Gtl StoneBr Norm Norm 1Fam 1Story 8 5 1998 1998 Gable CompShg CemntBd CmentBd None 0.0 TA TA PConc Gd TA Av GLQ 341.0 Unf 0.0 1077.0 1418.0 GasA ... Y SBrkr 1478 0 0 1478 1.0 0.0 2 0 2 1 TA 5 Typ 0 NaN Attchd 1998.0 Fin 2.0 495.0 TA TA Y 168 43 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1631 1632 120 RL 57.0 8013 Pave NaN IR1 Lvl AllPub Corner Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 1995 1996 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA No GLQ 741.0 Unf 0.0 846.0 1587.0 GasA ... Y SBrkr 1734 0 0 1734 1.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 1995.0 RFn 2.0 528.0 TA TA Y 52 50 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal NaN
1632 1633 80 RL 57.0 8923 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam SLvl 7 5 1998 1998 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 189.0 Unf 0.0 195.0 384.0 GasA ... Y SBrkr 751 631 0 1382 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA BuiltIn 1998.0 Fin 2.0 396.0 TA TA Y 256 0 0 0 0 0 NaN NaN NaN 0 2 2009 WD Normal NaN
1633 1634 60 RL 60.0 7500 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1998 1999 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 476.0 Unf 0.0 476.0 952.0 GasA ... Y SBrkr 952 684 0 1636 1.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1998.0 Fin 2.0 440.0 TA TA Y 0 84 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1634 1635 60 RL NaN 8803 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1994 1995 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No GLQ 600.0 Unf 0.0 107.0 707.0 GasA ... Y SBrkr 707 809 0 1516 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1994.0 Fin 2.0 409.0 TA TA Y 0 46 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1635 1636 20 RL 58.0 7250 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 1Story 6 5 1993 1993 Gable CompShg HdBoard HdBoard BrkFace 45.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1181.0 1181.0 GasA ... Y SBrkr 1190 0 0 1190 0.0 0.0 2 0 3 1 Gd 6 Typ 1 TA Attchd 1993.0 Unf 2.0 430.0 TA TA Y 0 21 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal NaN
1636 1637 60 RL 85.0 11900 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 5 6 1977 1977 Gable CompShg HdBoard Wd Sdng BrkFace 157.0 TA TA PConc Gd TA No ALQ 400.0 Unf 0.0 722.0 1122.0 GasA ... Y SBrkr 946 988 0 1934 1.0 0.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1977.0 Unf 2.0 567.0 TA TA P 0 176 0 0 200 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1637 1638 60 RL NaN 13250 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes RRNn Norm 1Fam 2Story 7 6 1978 1978 Gable CompShg HdBoard HdBoard BrkFace 256.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 832.0 832.0 GasA ... Y SBrkr 1154 896 0 2050 0.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Attchd 1978.0 RFn 2.0 529.0 TA TA Y 192 192 0 0 0 0 NaN NaN NaN 0 5 2009 WD Abnorml NaN
1638 1639 20 RL 80.0 10928 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 6 1978 1986 Gable CompShg VinylSd VinylSd BrkFace 101.0 TA TA PConc TA TA No LwQ 363.0 Unf 0.0 1064.0 1427.0 GasA ... Y SBrkr 1671 0 0 1671 0.0 0.0 2 0 3 1 TA 7 Typ 1 TA Attchd 1978.0 RFn 2.0 484.0 TA TA Y 252 55 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1639 1640 60 RL NaN 12388 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 7 7 1980 1991 Gable CompShg Plywood Plywood BrkFace 229.0 TA TA CBlock Gd TA No ALQ 602.0 Unf 0.0 441.0 1043.0 GasA ... Y SBrkr 1539 1134 0 2673 0.0 0.0 2 1 4 1 Gd 9 Typ 1 TA BuiltIn 1980.0 RFn 2.0 441.0 TA TA Y 178 84 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1640 1641 20 RL 80.0 11088 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 5 1978 1998 Gable CompShg HdBoard HdBoard BrkFace 144.0 TA TA PConc TA TA No ALQ 832.0 Unf 0.0 308.0 1140.0 GasA ... Y SBrkr 1707 0 0 1707 0.0 0.0 2 0 3 1 TA 7 Typ 1 TA Attchd 1978.0 Fin 2.0 479.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1641 1642 60 FV 70.0 7000 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA Mn GLQ 622.0 Unf 0.0 304.0 926.0 GasA ... Y SBrkr 1016 868 0 1884 1.0 0.0 2 1 3 1 Ex 7 Typ 1 Ex Attchd 2003.0 RFn 2.0 581.0 TA TA Y 0 35 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1642 1643 60 FV NaN 7500 Pave NaN Reg Lvl AllPub Inside Gtl Somerst RRNn Norm 1Fam 2Story 8 5 2000 2001 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1058.0 1058.0 GasA ... Y SBrkr 1058 816 0 1874 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 2000.0 Fin 2.0 588.0 TA TA Y 0 134 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1643 1644 60 FV NaN 8470 Pave NaN Reg Lvl AllPub Corner Gtl Somerst Norm Norm 1Fam 2Story 8 5 2002 2002 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 225.0 ALQ 276.0 471.0 972.0 GasA ... Y SBrkr 972 839 0 1811 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2002.0 RFn 2.0 565.0 TA TA Y 225 48 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1644 1645 20 RL NaN 9373 Pave NaN IR1 Lvl AllPub CulDSac Gtl NWAmes PosN Norm 1Fam 1Story 5 7 1975 1975 Gable CompShg HdBoard HdBoard BrkFace 161.0 TA TA CBlock Gd TA Av ALQ 1333.0 LwQ 168.0 120.0 1621.0 GasA ... Y SBrkr 1621 0 0 1621 1.0 0.0 2 0 3 1 TA 7 Typ 2 Fa Attchd 1975.0 RFn 2.0 478.0 TA TA Y 0 0 0 0 490 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1645 1646 20 RL 78.0 10140 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 6 1974 1974 Hip CompShg Plywood Plywood BrkFace 196.0 TA TA CBlock TA TA No ALQ 888.0 Unf 0.0 228.0 1116.0 GasA ... Y SBrkr 1116 0 0 1116 1.0 0.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1974.0 RFn 2.0 528.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 4 2009 WD Normal NaN
1646 1647 20 RL 85.0 11050 Pave NaN IR1 Lvl AllPub Corner Gtl NWAmes Norm Norm 1Fam 1Story 7 5 1975 1975 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No ALQ 636.0 Unf 0.0 540.0 1176.0 GasA ... Y SBrkr 1193 0 0 1193 0.0 0.0 2 0 3 1 TA 5 Typ 1 TA Attchd 1975.0 Unf 2.0 506.0 TA TA Y 40 0 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1647 1648 20 RL NaN 7830 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1970 1970 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1180.0 1180.0 GasA ... Y SBrkr 1180 0 0 1180 0.0 0.0 1 1 2 1 TA 6 Typ 0 NaN Attchd 1970.0 RFn 2.0 477.0 TA TA Y 0 45 0 0 0 0 NaN NaN NaN 0 3 2009 COD Normal NaN
1648 1649 20 RL NaN 8510 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1971 1971 Gable CompShg Plywood Plywood BrkFace 178.0 TA TA CBlock Gd TA No ALQ 500.0 Unf 0.0 543.0 1043.0 GasA ... Y SBrkr 1050 0 0 1050 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1971.0 Unf 1.0 336.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1649 1650 20 RL 60.0 7038 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 4 6 1970 1970 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No ALQ 726.0 Unf 0.0 138.0 864.0 GasA ... Y SBrkr 864 0 0 864 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 2001.0 Unf 2.0 576.0 TA TA Y 210 0 0 0 0 0 NaN GdPrv NaN 0 9 2009 WD Abnorml NaN
1650 1651 20 RL 60.0 9000 Pave NaN Reg Lvl AllPub FR2 Gtl NAmes Norm Norm 1Fam 1Story 4 7 1971 2006 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA TA No ALQ 240.0 Unf 0.0 624.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1986.0 Unf 2.0 576.0 TA TA Y 200 0 0 0 0 0 NaN GdWo NaN 0 7 2009 WD Normal NaN
1651 1652 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 5 1973 1973 Gable CompShg HdBoard HdBoard BrkFace 504.0 TA TA CBlock TA TA No BLQ 254.0 Unf 0.0 229.0 483.0 GasA ... Y SBrkr 483 504 0 987 1.0 0.0 1 1 2 1 TA 5 Typ 0 NaN Detchd 1973.0 Unf 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1652 1653 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 6 1972 1972 Gable CompShg HdBoard HdBoard BrkFace 425.0 TA TA CBlock TA TA No Rec 110.0 LwQ 294.0 79.0 483.0 GasA ... Y SBrkr 483 504 0 987 1.0 0.0 1 1 2 1 TA 5 Typ 0 NaN Detchd 1972.0 Unf 1.0 288.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1653 1654 160 RL 24.0 2308 Pave NaN Reg Lvl AllPub FR2 Gtl NPkVill Norm Norm TwnhsE 2Story 6 5 1976 1976 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock Gd TA No ALQ 306.0 Unf 0.0 498.0 804.0 GasA ... Y SBrkr 804 744 0 1548 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Detchd 1976.0 RFn 2.0 440.0 TA TA Y 108 0 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal NaN
1654 1655 120 RL 24.0 2280 Pave NaN Reg Lvl AllPub FR2 Gtl NPkVill Norm Norm Twnhs 1Story 7 5 1975 1975 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock Gd TA No ALQ 435.0 LwQ 622.0 0.0 1057.0 GasA ... Y SBrkr 1055 0 0 1055 0.0 1.0 2 0 2 1 TA 4 Typ 1 Fa Attchd 1975.0 RFn 2.0 440.0 TA TA Y 0 27 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1655 1656 160 RL 24.0 2349 Pave NaN Reg Lvl AllPub Inside Gtl NPkVill Norm Norm Twnhs 2Story 6 5 1977 1977 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock Gd TA No ALQ 389.0 Unf 0.0 466.0 855.0 GasA ... Y SBrkr 855 601 0 1456 0.0 0.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1977.0 Unf 2.0 440.0 TA TA Y 0 28 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1656 1657 160 RL 24.0 2364 Pave NaN Reg Lvl AllPub Inside Gtl NPkVill Norm Norm TwnhsE 2Story 6 5 1978 1978 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock Gd TA No ALQ 320.0 Unf 0.0 484.0 804.0 GasA ... Y SBrkr 804 744 0 1548 0.0 1.0 2 1 3 1 TA 7 Typ 1 TA Detchd 1978.0 Unf 2.0 440.0 TA TA Y 108 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1657 1658 160 RL 24.0 2364 Pave NaN Reg Lvl AllPub Inside Gtl NPkVill Norm Norm TwnhsE 2Story 6 5 1978 1978 Gable CompShg Plywood Brk Cmn None 0.0 Gd TA CBlock Gd TA No ALQ 279.0 Unf 0.0 576.0 855.0 GasA ... Y SBrkr 855 601 0 1456 0.0 0.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1978.0 Fin 2.0 440.0 TA TA Y 147 0 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal NaN
1658 1659 120 RL 24.0 2104 Pave NaN Reg Lvl AllPub Inside Gtl NPkVill Norm Norm TwnhsE 1Story 7 6 1976 1976 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock TA TA No ALQ 536.0 Unf 0.0 300.0 836.0 GasA ... Y SBrkr 836 0 0 836 0.0 1.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1976.0 Unf 1.0 345.0 TA TA Y 150 20 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1659 1660 20 RL NaN 10710 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1966 2004 Hip CompShg HdBoard HdBoard BrkFace 165.0 Gd TA PConc TA TA No BLQ 644.0 Unf 0.0 220.0 864.0 GasA ... Y SBrkr 1120 0 0 1120 0.0 1.0 1 0 3 1 TA 5 Typ 1 TA Attchd 1966.0 RFn 2.0 656.0 TA TA Y 0 162 0 0 0 0 NaN NaN Shed 1200 7 2009 WD Normal NaN
1660 1661 60 RL 110.0 14257 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt PosN Norm 1Fam 2Story 9 5 2007 2007 Hip CompShg VinylSd VinylSd Stone 726.0 Ex TA PConc Ex TA No GLQ 1360.0 Unf 0.0 416.0 1776.0 GasA ... Y SBrkr 1794 978 0 2772 1.0 0.0 3 1 4 1 Ex 10 Typ 3 Gd BuiltIn 2007.0 Fin 3.0 754.0 TA TA Y 135 64 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1661 1662 60 RL 95.0 12350 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2009 2009 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA No GLQ 986.0 Unf 0.0 379.0 1365.0 GasA ... Y SBrkr 1365 1325 0 2690 1.0 0.0 2 1 3 1 Ex 8 Typ 1 Gd Attchd 2009.0 RFn 3.0 864.0 TA TA Y 0 197 0 0 0 0 NaN NaN NaN 0 7 2009 New Partial NaN
1662 1663 20 RL 95.0 12350 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2008 2008 Hip CompShg VinylSd VinylSd Stone 450.0 Ex TA PConc Ex TA Av GLQ 1232.0 Unf 0.0 788.0 2020.0 GasA ... Y SBrkr 2020 0 0 2020 1.0 0.0 2 0 3 1 Ex 7 Typ 1 Gd Attchd 2008.0 RFn 3.0 896.0 TA TA Y 192 98 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1663 1664 20 RL 105.0 13693 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt PosA PosA 1Fam 1Story 10 5 2007 2007 Hip CompShg VinylSd VinylSd Stone 472.0 Ex TA PConc Ex TA Gd GLQ 2288.0 Unf 0.0 342.0 2630.0 GasA ... Y SBrkr 2674 0 0 2674 2.0 0.0 2 1 2 1 Ex 8 Typ 2 Gd Attchd 2007.0 Fin 3.0 762.0 TA TA Y 360 50 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1664 1665 20 RL 95.0 11578 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2008 2008 Gable CompShg VinylSd VinylSd Stone 302.0 Ex TA PConc Ex TA No Unf 0.0 Unf 0.0 1736.0 1736.0 GasA ... Y SBrkr 1736 0 0 1736 0.0 0.0 2 0 3 1 Ex 7 Typ 1 Gd Attchd 2008.0 RFn 3.0 834.0 TA TA Y 319 90 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1665 1666 20 RL 129.0 16870 Pave NaN IR1 Lvl AllPub FR3 Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2004 2005 Hip CompShg VinylSd VinylSd BrkFace 238.0 Gd TA PConc Ex TA Gd GLQ 1531.0 Unf 0.0 251.0 1782.0 GasA ... Y SBrkr 1782 0 0 1782 1.0 0.0 2 0 3 1 Gd 7 Typ 2 Gd Attchd 2004.0 Fin 3.0 932.0 TA TA Y 99 82 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal NaN
1666 1667 60 RL 59.0 23303 Pave NaN IR3 Lvl AllPub CulDSac Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 20.0 Gd TA PConc Ex TA Av GLQ 1230.0 Unf 0.0 278.0 1508.0 GasA ... Y SBrkr 1508 1012 0 2520 1.0 0.0 2 1 5 1 Ex 10 Typ 1 Gd BuiltIn 2007.0 Fin 3.0 640.0 TA TA Y 192 273 0 0 0 0 NaN NaN NaN 0 6 2009 WD Family NaN
1667 1668 20 RL 87.0 10367 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2008 2008 Hip CompShg VinylSd VinylSd Stone 284.0 Ex TA PConc Ex TA Mn GLQ 1015.0 Unf 0.0 724.0 1739.0 GasA ... Y SBrkr 1743 0 0 1743 1.0 0.0 2 0 3 1 Ex 8 Typ 1 Gd Attchd 2008.0 RFn 3.0 927.0 TA TA Y 168 45 0 0 0 0 NaN NaN NaN 0 6 2009 ConLI Normal NaN
1668 1669 20 RL 77.0 10872 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2006 2006 Gable CompShg VinylSd VinylSd Stone 122.0 Gd TA PConc Ex Gd Av GLQ 1037.0 Unf 0.0 467.0 1504.0 GasA ... Y SBrkr 1531 0 0 1531 1.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2006.0 Fin 3.0 700.0 TA TA Y 184 52 0 0 0 0 NaN NaN NaN 0 2 2009 WD Normal NaN
1669 1670 20 RL 102.0 13514 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2008 2008 Hip CompShg VinylSd VinylSd None 285.0 Ex TA PConc Ex TA No GLQ 1142.0 Unf 0.0 632.0 1774.0 GasA ... Y SBrkr 1808 0 0 1808 1.0 0.0 2 0 3 1 Ex 7 Typ 1 Gd Attchd 2008.0 Fin 3.0 850.0 TA TA Y 200 26 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1670 1671 20 RL 90.0 12878 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 1Story 7 5 2003 2004 Hip CompShg VinylSd VinylSd BrkFace 418.0 Gd TA PConc Gd TA No ALQ 1262.0 Unf 0.0 498.0 1760.0 GasA ... Y SBrkr 1760 0 0 1760 1.0 0.0 2 0 3 1 Gd 8 Typ 1 Gd Attchd 2003.0 Fin 2.0 583.0 TA TA Y 165 190 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1671 1672 20 RL 110.0 15274 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2003 2003 Hip CompShg VinylSd VinylSd BrkFace 724.0 Gd TA PConc Ex TA No GLQ 1972.0 Unf 0.0 480.0 2452.0 GasA ... Y SBrkr 2452 0 0 2452 2.0 0.0 2 0 3 1 Ex 10 Typ 1 Gd Attchd 2003.0 Fin 3.0 886.0 TA TA Y 0 116 0 0 0 0 NaN MnPrv NaN 0 7 2009 WD Normal NaN
1672 1673 60 RL 96.0 13262 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2003 2004 Gable CompShg VinylSd VinylSd Stone 186.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1082.0 1082.0 GasA ... Y SBrkr 1105 1295 0 2400 0.0 0.0 3 1 4 1 Gd 10 Typ 1 Gd BuiltIn 2003.0 Fin 3.0 730.0 TA TA Y 114 40 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1673 1674 20 RL 70.0 9658 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd Stone 383.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1598.0 1598.0 GasA ... Y SBrkr 1606 0 0 1606 0.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2006.0 RFn 3.0 871.0 TA TA Y 230 60 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1674 1675 120 RL 47.0 6904 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 6 5 2005 2005 Gable CompShg VinylSd VinylSd Stone 240.0 Gd TA PConc Gd TA Av ALQ 836.0 Unf 0.0 522.0 1358.0 GasA ... Y SBrkr 1358 0 0 1358 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2005.0 RFn 2.0 484.0 TA TA Y 192 36 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1675 1676 120 RL 34.0 5122 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm Twnhs 1Story 6 5 2005 2005 Gable CompShg VinylSd VinylSd Stone 135.0 Gd TA PConc Gd TA Av GLQ 881.0 Unf 0.0 425.0 1306.0 GasA ... Y SBrkr 1306 0 0 1306 1.0 0.0 2 0 1 1 Gd 5 Typ 1 Gd Attchd 2005.0 RFn 2.0 624.0 TA TA Y 170 63 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1676 1677 120 RL 80.0 10307 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 7 5 2007 2008 Gable CompShg VinylSd VinylSd Stone 176.0 Gd TA PConc Gd TA No GLQ 876.0 Unf 0.0 474.0 1350.0 GasA ... Y SBrkr 1358 0 0 1358 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2008.0 RFn 2.0 484.0 TA TA Y 192 26 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1677 1678 20 RL 100.0 14836 Pave NaN IR1 HLS AllPub Inside Mod NridgHt Norm Norm 1Fam 1Story 10 5 2004 2005 Hip CompShg CemntBd CmentBd Stone 730.0 Ex TA PConc Ex TA Gd GLQ 2146.0 Unf 0.0 346.0 2492.0 GasA ... Y SBrkr 2492 0 0 2492 1.0 0.0 2 1 2 1 Ex 8 Typ 1 Ex Attchd 2004.0 Fin 3.0 949.0 TA TA Y 226 235 0 0 0 0 NaN NaN NaN 0 2 2009 WD Abnorml NaN
1678 1679 20 RL 117.0 15262 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2003 2004 Hip CompShg VinylSd VinylSd BrkFace 470.0 Gd TA PConc Ex TA Gd GLQ 1557.0 Unf 0.0 643.0 2200.0 GasA ... Y SBrkr 2200 0 0 2200 1.0 0.0 2 1 3 1 Ex 8 Typ 1 Gd Attchd 2003.0 Fin 3.0 685.0 TA TA Y 208 55 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1679 1680 120 RL 44.0 7390 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 9 5 2008 2009 Hip CompShg MetalSd MetalSd BrkFace 308.0 Ex TA PConc Ex TA No GLQ 800.0 Unf 0.0 1084.0 1884.0 GasA ... Y SBrkr 1884 0 0 1884 1.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2008.0 Fin 2.0 649.0 TA TA Y 231 90 0 0 0 0 NaN NaN NaN 0 5 2009 New Partial NaN
1680 1681 120 RL 48.0 6472 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 9 5 2008 2008 Hip CompShg VinylSd VinylSd BrkFace 500.0 Ex TA PConc Ex TA No Unf 0.0 Unf 0.0 1451.0 1451.0 GasA ... Y SBrkr 1456 0 0 1456 0.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2008.0 RFn 2.0 539.0 TA TA Y 192 42 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal NaN
1681 1682 20 RL 129.0 16770 Pave NaN Reg Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2002 2003 Hip CompShg VinylSd VinylSd BrkFace 270.0 Gd TA PConc Ex TA Gd GLQ 1196.0 Unf 0.0 516.0 1712.0 GasA ... Y SBrkr 1712 0 0 1712 1.0 0.0 2 0 3 1 Gd 8 Typ 1 Gd Attchd 2002.0 RFn 3.0 701.0 TA TA Y 218 183 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal NaN
1682 1683 120 RL 48.0 3480 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd Stone 163.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1405.0 1405.0 GasA ... Y SBrkr 1405 0 0 1405 0.0 0.0 2 0 2 1 Gd 6 Typ 1 TA Attchd 2003.0 RFn 2.0 478.0 TA TA Y 148 36 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal NaN
1683 1684 60 RL 63.0 10928 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert RRAn Norm 1Fam 2Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd Gd No Unf 0.0 Unf 0.0 728.0 728.0 GasA ... Y SBrkr 728 728 0 1456 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2005.0 Fin 2.0 390.0 TA TA Y 100 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1684 1685 60 RL 57.0 8918 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 745.0 745.0 GasA ... Y SBrkr 745 745 0 1490 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2005.0 Fin 2.0 392.0 TA TA Y 36 20 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1685 1686 120 RL 43.0 3182 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 16.0 Gd TA PConc Gd TA Av GLQ 16.0 Unf 0.0 1204.0 1220.0 GasA ... Y SBrkr 1220 0 0 1220 0.0 0.0 2 0 2 1 Gd 5 Typ 1 Gd Attchd 2005.0 Fin 2.0 397.0 TA TA Y 100 16 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1686 1687 80 RL 59.0 9434 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam SLvl 7 5 2004 2005 Gable CompShg WdShing Wd Shng None 0.0 Gd TA PConc Gd TA Mn Unf 0.0 Unf 0.0 384.0 384.0 GasA ... Y SBrkr 744 630 0 1374 0.0 0.0 2 1 3 1 Gd 6 Typ 1 Gd BuiltIn 2004.0 Fin 2.0 400.0 TA TA Y 100 0 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1687 1688 60 RL 62.0 7984 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2004 2005 Gable CompShg VinylSd VinylSd BrkFace 200.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 868.0 868.0 GasA ... Y SBrkr 868 762 0 1630 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd BuiltIn 2004.0 Fin 2.0 436.0 TA TA Y 120 48 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal NaN
1688 1689 60 RL 61.0 10125 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Mn Unf 0.0 Unf 0.0 846.0 846.0 GasA ... Y SBrkr 846 748 0 1594 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2004.0 Fin 2.0 434.0 TA TA Y 300 48 0 0 0 0 NaN MnPrv NaN 0 7 2009 WD Normal NaN
1689 1690 60 RL NaN 8965 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 652.0 Unf 0.0 130.0 782.0 GasA ... Y SBrkr 806 683 0 1489 1.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2003.0 Fin 2.0 400.0 TA TA Y 0 75 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1690 1691 60 RL NaN 8174 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 494.0 Unf 0.0 204.0 698.0 GasA ... Y SBrkr 698 644 0 1342 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 2003.0 Fin 2.0 393.0 TA TA Y 100 56 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1691 1692 60 RL NaN 12891 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 8 5 2002 2002 Gable CompShg VinylSd VinylSd NaN NaN Gd TA PConc Ex TA No GLQ 651.0 Unf 0.0 219.0 870.0 GasA ... Y SBrkr 878 1126 0 2004 1.0 0.0 2 1 4 1 Gd 8 Typ 1 Gd BuiltIn 2002.0 Fin 3.0 644.0 TA TA Y 0 48 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1692 1693 80 RL 61.0 9734 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert RRAn Norm 1Fam SLvl 7 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Mn GLQ 241.0 Rec 113.0 30.0 384.0 GasA ... Y SBrkr 744 630 0 1374 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN BuiltIn 2004.0 Fin 2.0 400.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1693 1694 60 RL 42.0 8433 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2000 2000 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No GLQ 683.0 Unf 0.0 111.0 794.0 GasA ... Y SBrkr 819 695 0 1514 1.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 2000.0 Fin 2.0 394.0 TA TA Y 0 72 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1694 1695 80 RL 62.0 7750 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam SLvl 7 5 1999 2000 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 384.0 384.0 GasA ... Y SBrkr 774 656 0 1430 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA BuiltIn 1999.0 RFn 2.0 400.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1695 1696 60 RL NaN 15896 Pave NaN IR2 Lvl AllPub CulDSac Gtl Gilbert RRNn Norm 1Fam 2Story 7 5 1999 1999 Gable CompShg VinylSd VinylSd BrkFace 210.0 Gd TA PConc Gd TA No ALQ 913.0 Unf 0.0 264.0 1177.0 GasA ... Y SBrkr 1223 1089 0 2312 1.0 0.0 2 1 4 1 Gd 8 Typ 1 TA BuiltIn 1999.0 Fin 3.0 658.0 TA TA Y 298 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1696 1697 80 RL 64.0 7848 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam SLvl 7 6 1999 1999 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 384.0 384.0 GasA ... Y SBrkr 774 656 0 1430 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA BuiltIn 1999.0 Fin 2.0 410.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1697 1698 60 RL 106.0 12720 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 2000 2000 Gable CompShg VinylSd VinylSd BrkFace 150.0 Gd TA PConc Gd TA Mn GLQ 1173.0 Unf 0.0 282.0 1455.0 GasA ... Y SBrkr 1466 1221 0 2687 1.0 0.0 2 1 4 1 Gd 10 Typ 2 TA BuiltIn 2000.0 RFn 3.0 810.0 TA TA Y 252 30 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal NaN
1698 1699 20 RL NaN 10750 Pave NaN IR1 Lvl AllPub CulDSac Gtl NoRidge Norm Norm 1Fam 1Story 8 5 1994 1995 Hip CompShg Wd Sdng Wd Sdng BrkFace 634.0 Gd TA PConc Gd TA Av BLQ 236.0 GLQ 1526.0 262.0 2024.0 GasA ... Y SBrkr 2063 0 0 2063 1.0 0.0 2 0 3 1 Gd 7 Typ 2 Gd Attchd 1994.0 Fin 3.0 815.0 TA TA Y 182 56 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1699 1700 60 RL 79.0 9085 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 7 5 1995 1996 Gable CompShg VinylSd VinylSd BrkFace 286.0 Gd TA PConc Gd TA No GLQ 816.0 Unf 0.0 254.0 1070.0 GasA ... Y SBrkr 1094 967 0 2061 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1995.0 Fin 2.0 647.0 TA TA Y 296 102 209 0 0 0 NaN NaN NaN 0 11 2009 WD Normal NaN
1700 1701 60 RL NaN 11692 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1993 1994 Gable CompShg HdBoard HdBoard BrkFace 372.0 Gd TA PConc Gd TA No GLQ 624.0 Unf 0.0 549.0 1173.0 GasA ... Y SBrkr 1215 1017 0 2232 1.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1993.0 RFn 2.0 623.0 TA TA Y 173 165 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1701 1702 20 RL 86.0 11194 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst PosN Norm 1Fam 1Story 8 5 2008 2008 Gable CompShg VinylSd VinylSd Stone 240.0 Gd TA PConc Gd TA Mn Unf 0.0 Unf 0.0 1696.0 1696.0 GasA ... Y SBrkr 1696 0 0 1696 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2008.0 RFn 3.0 972.0 TA TA Y 120 56 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal NaN
1702 1703 20 RL 78.0 10206 Pave NaN Reg Lvl AllPub Inside Gtl Somerst PosN Norm 1Fam 1Story 8 5 2008 2008 Gable CompShg VinylSd VinylSd BrkFace 294.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1614.0 1614.0 GasA ... Y SBrkr 1658 0 0 1658 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2008.0 Fin 3.0 726.0 TA TA Y 144 44 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal NaN
1703 1704 20 RL 85.0 10130 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 260.0 Gd TA PConc Gd TA Av GLQ 1294.0 Unf 0.0 408.0 1702.0 GasA ... Y SBrkr 1702 0 0 1702 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2007.0 RFn 3.0 844.0 TA TA Y 0 69 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1704 1705 20 RL 76.0 9139 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2006 2006 Hip CompShg VinylSd VinylSd Stone 206.0 Gd TA PConc Ex TA Av GLQ 379.0 Unf 0.0 1043.0 1422.0 GasA ... Y SBrkr 1432 0 0 1432 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 Fin 2.0 492.0 TA TA Y 297 50 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal NaN
1705 1706 20 RL 85.0 11128 Pave NaN Reg Lvl AllPub Corner Gtl Somerst PosN PosN 1Fam 1Story 9 5 2005 2006 Hip CompShg VinylSd VinylSd Stone 198.0 Ex TA PConc Ex TA Gd GLQ 2158.0 Unf 0.0 300.0 2458.0 GasA ... Y SBrkr 2490 0 0 2490 1.0 0.0 2 0 2 1 Ex 9 Typ 2 Gd Attchd 2005.0 Fin 3.0 795.0 TA TA Y 70 226 0 0 0 0 NaN GdPrv NaN 0 10 2009 WD Normal NaN
1706 1707 20 FV 90.0 7993 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2008 2009 Gable CompShg VinylSd VinylSd NaN NaN Gd TA PConc Ex TA No Unf 0.0 Unf 0.0 1436.0 1436.0 GasA ... Y SBrkr 1436 0 0 1436 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2008.0 Fin 2.0 529.0 TA TA Y 0 121 0 0 0 0 NaN NaN NaN 0 10 2009 New Partial NaN
1707 1708 20 FV 72.0 8640 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2008 2008 Hip CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1402.0 1402.0 GasA ... Y SBrkr 1402 0 0 1402 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2008.0 RFn 2.0 625.0 TA TA Y 205 126 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1708 1709 20 FV 112.0 12606 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 9 5 2007 2008 Gable CompShg VinylSd VinylSd Stone 120.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1530.0 1530.0 GasA ... Y SBrkr 1530 0 0 1530 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2008.0 RFn 3.0 984.0 TA TA Y 212 136 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1709 1710 20 FV 75.0 7500 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2006 2007 Gable CompShg VinylSd VinylSd Stone 238.0 Gd TA PConc Gd TA No GLQ 24.0 Unf 0.0 1348.0 1372.0 GasA ... Y SBrkr 1448 0 0 1448 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2006.0 RFn 2.0 692.0 TA TA Y 0 140 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1710 1711 60 FV 84.0 10603 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 2006 2006 Hip CompShg VinylSd VinylSd Stone 121.0 Gd TA PConc Ex Gd No GLQ 682.0 Unf 0.0 218.0 900.0 GasA ... Y SBrkr 909 886 0 1795 1.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2006.0 Fin 3.0 782.0 TA TA Y 168 45 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1711 1712 20 FV 65.0 8125 Pave NaN Reg Lvl AllPub Corner Gtl Somerst Norm Norm 1Fam 1Story 8 5 2008 2009 Hip CompShg VinylSd VinylSd BrkFace 288.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1836.0 1836.0 GasA ... Y SBrkr 1836 0 0 1836 0.0 0.0 2 0 3 1 Gd 8 Typ 1 Gd Attchd 2009.0 Fin 2.0 517.0 TA TA Y 0 175 0 0 0 0 NaN NaN NaN 0 10 2009 New Partial NaN
1712 1713 20 FV 85.0 10625 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2006 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 1430.0 Unf 0.0 222.0 1652.0 GasA ... Y SBrkr 1662 0 0 1662 1.0 0.0 2 0 3 1 Ex 8 Typ 1 Gd Attchd 2006.0 RFn 3.0 711.0 TA TA Y 168 120 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1713 1714 20 FV 68.0 8736 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2003 2004 Gable CompShg VinylSd Wd Shng None 0.0 Gd TA PConc Gd TA No GLQ 771.0 ALQ 360.0 422.0 1553.0 GasA ... Y SBrkr 1553 0 0 1553 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2003.0 RFn 2.0 588.0 TA TA Y 192 88 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1714 1715 60 FV 65.0 8127 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 410.0 Unf 0.0 402.0 812.0 GasA ... Y SBrkr 812 841 0 1653 1.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2003.0 RFn 2.0 628.0 TA TA Y 0 45 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1715 1716 20 RL 80.0 9605 Pave NaN Reg Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam 1Story 7 6 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1218.0 1218.0 GasA ... Y SBrkr 1218 0 0 1218 0.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN Detchd 2007.0 RFn 2.0 576.0 TA TA Y 0 178 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal NaN
1716 1717 20 RL 63.0 7500 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd Gd No GLQ 54.0 Unf 0.0 1087.0 1141.0 GasA ... Y SBrkr 1141 0 0 1141 1.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN Detchd 2006.0 RFn 2.0 484.0 TA TA Y 182 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1717 1718 20 RL 63.0 7500 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 6 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1158.0 1158.0 GasA ... Y SBrkr 1158 0 0 1158 0.0 0.0 1 1 3 1 Gd 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 50 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1718 1719 60 RL 96.0 10628 Pave NaN IR1 Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam 2Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Gd Unf 0.0 Unf 0.0 835.0 835.0 GasA ... Y SBrkr 871 941 0 1812 0.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN BuiltIn 2004.0 RFn 2.0 478.0 TA TA Y 146 91 0 0 0 0 NaN NaN NaN 0 1 2009 WD Normal NaN
1719 1720 20 RL 76.0 10141 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 8 5 2004 2004 Gable Tar&Grv VinylSd VinylSd BrkFace 264.0 Gd TA PConc Gd TA Gd BLQ 516.0 Rec 774.0 222.0 1512.0 GasA ... Y SBrkr 1512 0 0 1512 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2004.0 RFn 3.0 845.0 TA TA Y 210 36 0 0 0 0 NaN NaN NaN 0 1 2009 WD Normal NaN
1720 1721 20 RL 63.0 13072 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW RRAe Norm 1Fam 1Story 7 5 2004 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1114.0 1114.0 GasA ... Y SBrkr 1114 0 0 1114 0.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN Detchd 2005.0 Unf 2.0 576.0 TA TA Y 248 102 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1721 1722 20 RL 63.0 13072 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW RRAe Norm 1Fam 1Story 5 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1114.0 1114.0 GasA ... Y SBrkr 1114 0 0 1114 0.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 39 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1722 1723 20 RL 60.0 12450 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW RRAe Norm 1Fam 1Story 5 5 2003 2004 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No GLQ 836.0 Unf 0.0 278.0 1114.0 GasA ... Y SBrkr 1114 0 0 1114 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Detchd 2004.0 Unf 2.0 576.0 TA TA Y 0 42 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1723 1724 20 RL 61.0 7328 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 7 5 2008 2009 Gable CompShg VinylSd VinylSd BrkFace 140.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1450.0 1450.0 GasA ... Y SBrkr 1450 0 0 1450 0.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 2008.0 RFn 3.0 788.0 TA TA Y 0 93 0 0 0 0 NaN NaN NaN 0 2 2009 New Partial NaN
1724 1725 60 RL 43.0 11492 Pave NaN IR1 Lvl AllPub CulDSac Gtl SawyerW Norm Norm 1Fam 2Story 7 5 1996 1997 Gable CompShg VinylSd VinylSd BrkFace 132.0 Gd TA PConc Gd TA No GLQ 637.0 Unf 0.0 276.0 913.0 GasA ... Y SBrkr 913 1209 0 2122 1.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Attchd 1997.0 RFn 2.0 559.0 TA TA Y 0 74 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal NaN
1725 1726 60 RL 70.0 7703 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 6 6 1992 1992 Gable CompShg HdBoard HdBoard None 0.0 Gd Gd PConc Gd Gd No GLQ 52.0 Rec 364.0 400.0 816.0 GasA ... Y SBrkr 833 897 0 1730 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 1992.0 RFn 2.0 528.0 TA TA Y 0 91 0 0 168 0 NaN NaN NaN 0 11 2009 WD Normal NaN
1726 1727 120 RL 50.0 7175 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm TwnhsE 1Story 6 5 1990 1991 Gable CompShg Plywood ImStucc None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1332.0 1332.0 GasA ... Y SBrkr 1332 0 0 1332 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 1990.0 RFn 2.0 542.0 TA TA Y 0 60 0 0 0 0 NaN NaN NaN 0 2 2009 WD Normal NaN
1727 1728 60 RL 70.0 9109 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW RRAe Norm 1Fam 2Story 7 5 1994 1994 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No LwQ 36.0 GLQ 596.0 122.0 754.0 GasA ... Y SBrkr 754 786 0 1540 1.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 1994.0 RFn 2.0 495.0 TA TA Y 140 32 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1728 1729 60 RL NaN 10274 Pave NaN IR1 Lvl AllPub CulDSac Gtl SawyerW Norm Norm 1Fam 2Story 6 7 1986 1986 Gable CompShg VinylSd VinylSd BrkFace 141.0 TA Gd CBlock Gd TA No Rec 331.0 Unf 0.0 345.0 676.0 GasA ... Y SBrkr 698 702 0 1400 0.0 0.0 2 1 3 1 TA 6 Typ 0 NaN Attchd 1986.0 RFn 2.0 465.0 TA TA Y 0 48 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1729 1730 90 RL 75.0 8250 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm Duplex 2Story 6 7 1981 1981 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 964 918 0 1882 0.0 0.0 2 0 4 2 TA 8 Typ 2 TA Attchd 1981.0 Unf 2.0 612.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1730 1731 20 RL 63.0 9750 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1962 1962 Hip CompShg HdBoard Plywood None 0.0 TA TA CBlock TA TA No LwQ 68.0 BLQ 884.0 28.0 980.0 GasA ... Y SBrkr 980 0 0 980 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1969.0 Unf 2.0 400.0 TA TA Y 0 28 0 0 0 0 NaN MnPrv NaN 0 11 2009 WD Normal NaN
1731 1732 20 RL NaN 8499 Pave NaN IR1 Lvl AllPub Corner Gtl Sawyer Feedr Norm 1Fam 1Story 5 6 1961 1961 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No GLQ 660.0 Unf 0.0 204.0 864.0 GasA ... Y SBrkr 864 0 0 864 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1982.0 Unf 2.0 732.0 TA TA Y 0 312 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1732 1733 20 RL NaN 9079 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1961 1961 Gable CompShg Wd Sdng Plywood None 0.0 TA TA CBlock TA TA No BLQ 864.0 Unf 0.0 0.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1961.0 Unf 1.0 440.0 TA TA Y 158 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1733 1734 20 RL NaN 9316 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1965 1965 Gable CompShg HdBoard Plywood None 0.0 TA TA CBlock TA TA No Rec 544.0 Unf 0.0 480.0 1024.0 GasA ... Y SBrkr 1020 0 0 1020 0.0 0.0 2 0 3 1 TA 5 Typ 0 NaN Attchd 1965.0 Unf 1.0 288.0 TA TA Y 171 0 0 0 0 0 NaN MnPrv NaN 0 5 2009 Oth Family NaN
1734 1735 20 RL NaN 7791 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer RRAe Norm 1Fam 1Story 5 8 1963 1995 Gable CompShg Plywood Plywood None 0.0 Gd Gd CBlock TA TA No ALQ 624.0 Unf 0.0 288.0 912.0 GasA ... Y SBrkr 912 0 0 912 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Attchd 1963.0 RFn 1.0 300.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 10 2009 WD Normal NaN
1735 1736 20 RL 65.0 7150 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Feedr Norm 1Fam 1Story 5 6 1962 1962 Gable CompShg VinylSd VinylSd BrkFace 60.0 TA TA CBlock TA TA No LwQ 140.0 BLQ 590.0 182.0 912.0 GasA ... Y SBrkr 912 0 0 912 0.0 1.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1962.0 Unf 1.0 252.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1736 1737 20 RL NaN 15676 Pave NaN IR1 Low AllPub Inside Gtl Veenker Norm Norm 1Fam 1Story 8 8 1980 1980 Gable CompShg VinylSd VinylSd BrkFace 115.0 Gd Gd CBlock Gd Gd Gd ALQ 1733.0 Rec 92.0 189.0 2014.0 GasA ... Y SBrkr 2014 0 0 2014 1.0 0.0 2 0 2 1 Gd 6 Maj1 2 Gd Attchd 1980.0 RFn 3.0 864.0 TA TA Y 462 0 0 255 0 0 NaN MnPrv NaN 0 4 2009 WD Normal NaN
1737 1738 60 RL NaN 11949 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 7 8 1991 2008 Gable CompShg VinylSd VinylSd BrkFace 196.0 Gd Gd PConc Gd TA No GLQ 601.0 ALQ 216.0 158.0 975.0 GasA ... Y SBrkr 975 780 0 1755 0.0 1.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1991.0 Unf 2.0 524.0 TA TA Y 502 60 0 0 0 0 NaN GdPrv NaN 0 7 2009 WD Normal NaN
1738 1739 160 FV 32.0 2880 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 7 5 2004 2005 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1376.0 1376.0 GasA ... Y SBrkr 1376 1629 0 3005 0.0 0.0 2 1 3 1 Gd 9 Mod 1 TA BuiltIn 2004.0 Fin 3.0 704.0 TA TA Y 0 177 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1739 1740 120 FV NaN 3830 Pave Pave IR1 Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 1Story 6 5 2008 2008 Gable CompShg VinylSd VinylSd Stone 280.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1726.0 1726.0 GasA ... Y SBrkr 1726 0 0 1726 0.0 0.0 2 1 2 1 Gd 6 Typ 1 Gd Attchd 2008.0 Fin 2.0 561.0 TA TA Y 0 254 0 0 0 0 NaN NaN NaN 0 1 2009 New Partial NaN
1740 1741 120 FV NaN 4217 Pave Pave IR1 Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 1Story 6 5 2008 2008 Gable CompShg VinylSd VinylSd Stone 252.0 Gd TA PConc Gd TA No GLQ 962.0 Unf 0.0 183.0 1145.0 GasA ... Y SBrkr 1256 0 0 1256 1.0 0.0 1 1 1 1 Gd 5 Typ 1 Gd Attchd 2008.0 Fin 2.0 641.0 TA TA Y 0 169 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1741 1742 160 FV 34.0 2998 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 2Story 6 5 2000 2000 Gable CompShg MetalSd MetalSd BrkFace 513.0 Gd TA PConc Gd TA No GLQ 507.0 Unf 0.0 249.0 756.0 GasA ... Y SBrkr 756 756 0 1512 1.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Detchd 2000.0 Unf 2.0 440.0 TA TA Y 0 32 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1742 1743 160 FV 35.0 3768 Pave NaN Reg Lvl AllPub FR2 Gtl Somerst Norm Norm TwnhsE 2Story 7 5 1999 1999 Hip CompShg MetalSd MetalSd BrkFace 218.0 Gd TA PConc Gd TA No GLQ 549.0 Unf 0.0 142.0 691.0 GasA ... Y SBrkr 713 739 0 1452 1.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Detchd 1999.0 Unf 2.0 506.0 TA TA Y 0 34 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal NaN
1743 1744 20 RL NaN 14694 Pave NaN IR1 Lvl AllPub Inside Gtl Veenker Norm Norm 1Fam 1Story 8 9 1977 2008 Gable CompShg MetalSd MetalSd BrkFace 450.0 Ex Ex CBlock Gd Gd Gd GLQ 1252.0 ALQ 136.0 306.0 1694.0 GasA ... Y SBrkr 1694 0 0 1694 1.0 0.0 2 0 2 1 Ex 5 Typ 1 Gd Attchd 1977.0 Fin 2.0 642.0 TA TA Y 501 120 0 225 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1744 1745 20 RL 110.0 15417 Pave NaN Reg Lvl AllPub Inside Gtl Veenker Norm Norm 1Fam 1Story 7 5 1981 1981 Gable CompShg BrkFace BrkFace None 0.0 Gd TA CBlock Gd TA Mn LwQ 121.0 Unf 0.0 1619.0 1740.0 GasA ... Y SBrkr 1740 0 0 1740 0.0 0.0 1 1 2 1 Gd 7 Typ 0 NaN Attchd 1981.0 RFn 2.0 540.0 TA TA Y 228 20 218 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1745 1746 80 RL 80.0 9600 Pave NaN Reg Low AllPub FR2 Mod Veenker Feedr Norm 1Fam SLvl 8 5 1976 1976 Gable CompShg Plywood Plywood BrkFace 200.0 Gd Gd CBlock TA TA No Unf 0.0 Unf 0.0 392.0 392.0 GasA ... Y SBrkr 1487 1012 0 2499 0.0 0.0 2 1 4 1 TA 5 Typ 1 Gd Attchd 1976.0 Unf 2.0 527.0 TA TA Y 0 64 0 0 0 0 NaN NaN NaN 0 1 2009 WD Abnorml NaN
1746 1747 60 RL NaN 12732 Pave NaN IR1 Lvl AllPub CulDSac Gtl NWAmes PosN Norm 1Fam 2Story 7 6 1974 1974 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA Mn GLQ 560.0 LwQ 42.0 150.0 752.0 GasA ... Y SBrkr 1285 782 0 2067 0.0 0.0 2 1 3 1 Gd 7 Typ 2 TA Attchd 1974.0 RFn 2.0 784.0 TA TA Y 297 40 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1747 1748 60 RL 80.0 10400 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes PosA Norm 1Fam 2Story 6 7 1967 1997 Gable CompShg MetalSd MetalSd BrkFace 256.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 932.0 932.0 GasA ... Y SBrkr 1271 1369 0 2640 0.0 0.0 2 1 5 1 Gd 8 Typ 1 TA Attchd 1967.0 RFn 2.0 515.0 TA TA Y 0 120 0 0 168 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1748 1749 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Feedr Norm 1Fam 1Story 5 5 1969 1969 Gable CompShg HdBoard HdBoard BrkFace 128.0 TA TA CBlock Gd TA Mn ALQ 553.0 Rec 147.0 588.0 1288.0 GasA ... Y SBrkr 1336 0 0 1336 0.0 1.0 2 0 3 1 TA 6 Typ 1 Fa Attchd 1969.0 RFn 2.0 502.0 TA TA Y 312 11 0 0 0 0 NaN NaN Shed 650 8 2009 WD Normal NaN
1749 1750 20 RL 75.0 9000 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Feedr Norm 1Fam 1Story 6 5 1969 1969 Gable CompShg HdBoard HdBoard BrkFace 200.0 TA TA CBlock TA TA Av BLQ 955.0 Unf 0.0 261.0 1216.0 GasA ... Y SBrkr 1216 0 0 1216 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1969.0 Unf 1.0 336.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 8 2009 WD Abnorml NaN
1750 1751 60 RL NaN 13774 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 7 7 1977 1992 Hip CompShg HdBoard HdBoard BrkFace 283.0 TA Gd PConc Gd TA No GLQ 432.0 Unf 0.0 476.0 908.0 GasA ... Y SBrkr 1316 972 0 2288 0.0 0.0 1 2 4 1 Gd 8 Typ 2 TA Attchd 1977.0 RFn 2.0 520.0 TA TA Y 321 72 0 0 156 0 NaN NaN NaN 0 11 2009 WD Normal NaN
1751 1752 20 RL 62.0 7130 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1967 1967 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc TA TA No BLQ 648.0 Unf 0.0 216.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 1.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1967.0 Fin 1.0 312.0 TA TA Y 0 0 0 0 0 0 NaN GdPrv NaN 0 6 2009 WD Normal NaN
1752 1753 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1967 1967 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1568.0 1568.0 GasA ... Y SBrkr 1568 0 0 1568 0.0 0.0 1 1 3 1 TA 7 Typ 0 NaN Attchd 1967.0 Unf 2.0 440.0 TA TA Y 160 40 0 0 0 0 NaN NaN NaN 0 3 2009 COD Normal NaN
1753 1754 60 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 7 5 1974 1974 Gable CompShg Plywood Plywood BrkFace 252.0 TA TA CBlock TA TA No ALQ 698.0 Unf 0.0 467.0 1165.0 GasA ... Y SBrkr 1165 896 0 2061 0.0 1.0 2 1 4 1 TA 8 Typ 1 TA Attchd 1974.0 RFn 2.0 498.0 TA TA Y 0 77 0 0 196 0 NaN NaN NaN 0 5 2009 COD Abnorml NaN
1754 1755 85 RL NaN 16500 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam SFoyer 6 5 1971 1971 Hip CompShg HdBoard HdBoard BrkFace 509.0 TA TA CBlock Gd TA Av GLQ 962.0 Unf 0.0 270.0 1232.0 GasA ... Y SBrkr 1320 0 0 1320 0.0 1.0 2 0 3 1 TA 5 Typ 1 Gd Attchd 1971.0 RFn 2.0 495.0 TA TA Y 0 20 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1755 1756 20 RL 60.0 7436 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 4 7 1960 1960 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No ALQ 734.0 Unf 0.0 160.0 894.0 GasA ... Y SBrkr 894 0 0 894 1.0 0.0 1 0 2 1 TA 5 Typ 1 Po Detchd 1988.0 Unf 2.0 396.0 TA TA Y 0 0 0 360 0 0 NaN GdWo NaN 0 8 2009 WD Normal NaN
1756 1757 20 RL 65.0 8125 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1959 1959 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No BLQ 403.0 Unf 0.0 461.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1960.0 Unf 1.0 308.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal NaN
1757 1758 20 RL NaN 9450 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 4 5 1957 1957 Gable CompShg Wd Sdng Wd Sdng BrkFace 160.0 TA TA CBlock TA TA No BLQ 775.0 Unf 0.0 265.0 1040.0 GasA ... Y SBrkr 1362 0 0 1362 1.0 0.0 1 0 3 1 TA 6 Typ 1 Gd Attchd 1982.0 RFn 3.0 768.0 TA TA Y 0 0 84 0 0 0 NaN MnPrv NaN 0 5 2009 WD Normal NaN
1758 1759 20 RL NaN 13495 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 6 1956 1956 Gable CompShg Wd Sdng Wd Sdng BrkFace 70.0 TA Gd CBlock TA TA No BLQ 625.0 LwQ 201.0 222.0 1048.0 GasA ... Y SBrkr 1728 0 0 1728 1.0 0.0 2 0 3 1 TA 7 Min1 1 Gd Detchd 1956.0 Unf 2.0 576.0 TA TA Y 0 99 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1759 1760 20 RL 85.0 9350 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1961 1995 Gable CompShg Wd Sdng Wd Sdng BrkFace 217.0 TA TA CBlock TA TA No ALQ 310.0 BLQ 512.0 491.0 1313.0 GasA ... Y SBrkr 1313 0 0 1313 1.0 0.0 1 1 3 1 Gd 6 Typ 1 TA Attchd 1961.0 RFn 2.0 610.0 TA TA Y 172 28 0 0 121 0 NaN MnPrv NaN 0 2 2009 WD Normal NaN
1760 1761 20 RL 115.0 10500 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1964 1964 Gable CompShg HdBoard HdBoard Stone 144.0 TA Gd CBlock TA TA No LwQ 998.0 Unf 0.0 294.0 1292.0 GasA ... Y SBrkr 1292 0 0 1292 1.0 0.0 1 1 3 1 TA 6 Typ 2 Gd Detchd 1964.0 Unf 2.0 520.0 TA TA Y 0 32 0 0 92 0 NaN NaN NaN 0 7 2009 COD Abnorml NaN
1761 1762 60 RL NaN 8970 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 2Story 5 6 1965 1965 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No ALQ 388.0 Unf 0.0 356.0 744.0 GasA ... Y SBrkr 825 1315 0 2140 0.0 0.0 2 1 4 1 TA 7 Typ 1 TA Attchd 1965.0 Fin 2.0 549.0 TA TA Y 0 40 264 0 0 0 NaN MnPrv NaN 0 6 2009 WD Normal NaN
1762 1763 80 RL 85.0 11475 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam SLvl 6 6 1961 1961 Hip CompShg HdBoard HdBoard BrkFace 90.0 TA TA CBlock TA TA Gd ALQ 568.0 Unf 0.0 640.0 1208.0 GasA ... Y SBrkr 1576 0 0 1576 1.0 0.0 1 0 4 1 Gd 7 Typ 1 Po BuiltIn 1961.0 Fin 2.0 368.0 TA TA Y 85 0 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal NaN
1763 1764 20 RL 68.0 9768 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1955 1955 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 100.0 ALQ 247.0 613.0 960.0 GasA ... Y SBrkr 960 0 0 960 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1955.0 RFn 1.0 330.0 TA TA Y 0 70 0 0 0 0 NaN MnPrv NaN 0 2 2009 WD Normal NaN
1764 1765 20 RL 90.0 9900 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam 1Story 6 5 1967 1967 Gable CompShg BrkComm Brk Cmn None 0.0 Gd TA CBlock TA TA No Rec 1173.0 Unf 0.0 507.0 1680.0 GasA ... Y SBrkr 1691 0 0 1691 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1967.0 Unf 2.0 550.0 Gd TA Y 0 67 260 0 0 0 NaN MnPrv NaN 0 4 2009 WD Normal NaN
1765 1766 20 RL 92.0 10573 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 6 1961 1961 Hip CompShg MetalSd MetalSd BrkFace 3.0 TA TA CBlock TA TA No Rec 1312.0 Unf 0.0 141.0 1453.0 GasA ... Y SBrkr 1453 0 0 1453 1.0 0.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1961.0 RFn 2.0 530.0 TA TA Y 0 49 0 0 288 0 NaN GdPrv NaN 0 4 2009 WD Normal NaN
1766 1767 20 RL 80.0 14695 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 8 1966 2008 Gable CompShg MetalSd MetalSd BrkFace 210.0 TA Gd CBlock TA TA No ALQ 1387.0 Unf 0.0 175.0 1562.0 GasA ... Y SBrkr 1567 0 0 1567 1.0 0.0 2 0 2 1 Gd 5 Typ 2 Gd Attchd 1966.0 Unf 2.0 542.0 TA TA Y 0 110 0 0 342 0 NaN GdWo NaN 0 7 2009 WD Normal NaN
1767 1768 20 RL 73.0 8760 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1956 1956 Gable CompShg Wd Sdng Wd Sdng BrkFace 164.0 Gd TA CBlock TA TA No ALQ 856.0 Unf 0.0 313.0 1169.0 GasA ... Y SBrkr 1144 0 0 1144 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1956.0 RFn 1.0 286.0 TA TA Y 257 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1768 1769 20 RL NaN 12285 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 7 6 1960 1960 Gable CompShg Plywood Plywood BrkFace 128.0 TA TA CBlock TA TA No BLQ 544.0 Unf 0.0 785.0 1329.0 GasA ... Y SBrkr 1329 0 0 1329 0.0 0.0 1 1 3 1 TA 5 Typ 2 Gd Attchd 1960.0 Unf 2.0 441.0 TA TA Y 0 0 203 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1769 1770 20 RL 66.0 9240 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 8 1959 1998 Hip CompShg MetalSd MetalSd None 0.0 Gd TA CBlock TA TA No ALQ 708.0 Unf 0.0 280.0 988.0 GasA ... Y SBrkr 988 0 0 988 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1959.0 Unf 1.0 297.0 TA TA Y 156 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1770 1771 20 RL 70.0 8750 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1956 1956 Gable CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No Rec 435.0 BLQ 202.0 565.0 1202.0 GasA ... Y SBrkr 1202 0 0 1202 0.0 1.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1956.0 RFn 1.0 304.0 TA TA Y 0 35 120 0 0 0 NaN GdWo NaN 0 11 2009 COD Abnorml NaN
1771 1772 20 RL 70.0 8750 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1955 1955 Gable CompShg AsbShng AsbShng None 0.0 TA TA CBlock TA TA No Rec 172.0 LwQ 483.0 727.0 1382.0 GasA ... Y FuseA 1382 0 0 1382 0.0 1.0 1 0 3 1 Gd 6 Typ 0 NaN Attchd 1955.0 Unf 1.0 350.0 TA TA Y 280 0 0 0 0 0 NaN GdWo NaN 0 7 2009 WD Normal NaN
1772 1773 20 RL 80.0 10400 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 4 5 1956 1956 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No Rec 155.0 LwQ 750.0 295.0 1200.0 GasA ... Y SBrkr 1200 0 0 1200 1.0 0.0 1 0 3 1 TA 6 Typ 2 Gd Attchd 1956.0 Unf 1.0 294.0 TA TA Y 0 189 140 0 0 0 NaN NaN NaN 0 11 2009 WD Family NaN
1773 1774 90 RL 76.0 9482 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm Duplex 1Story 5 4 1958 1958 Hip CompShg Wd Sdng Wd Sdng BrkFace 657.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 1866.0 1866.0 GasA ... Y SBrkr 1866 0 0 1866 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Detchd 1958.0 Unf 2.0 495.0 TA Fa Y 0 0 0 0 0 0 NaN NaN NaN 0 12 2009 WD Normal NaN
1774 1775 20 RL 53.0 8128 Pave NaN IR1 Lvl AllPub CulDSac Gtl NAmes Norm Norm 1Fam 1Story 6 7 1954 1954 Hip CompShg MetalSd MetalSd BrkFace 80.0 TA TA CBlock TA TA No ALQ 490.0 Unf 0.0 572.0 1062.0 GasA ... Y SBrkr 1062 0 0 1062 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1954.0 Unf 1.0 297.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 2 2009 WD Normal NaN
1775 1776 20 RL 67.0 13070 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 5 1951 1951 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 308.0 Unf 0.0 323.0 631.0 GasA ... Y FuseA 1112 0 0 1112 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Basment 1951.0 Unf 2.0 480.0 TA TA Y 0 0 0 0 255 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1776 1777 30 RL 80.0 8480 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 6 1945 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No BLQ 700.0 Unf 0.0 93.0 793.0 GasA ... Y SBrkr 793 0 0 793 1.0 0.0 1 0 2 1 Fa 4 Typ 0 NaN Detchd 1945.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1777 1778 20 RL 60.0 7626 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 8 1952 2005 Hip CompShg Wd Sdng Wd Sdng None 0.0 Gd TA CBlock TA TA No GLQ 931.0 Unf 0.0 100.0 1031.0 GasA ... Y SBrkr 1031 0 0 1031 1.0 0.0 1 0 2 1 Gd 5 Typ 0 NaN Attchd 1952.0 Unf 1.0 230.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 3 2009 WD Normal NaN
1778 1779 20 RL 75.0 9533 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1953 1953 Hip CompShg Wd Sdng Wd Sdng BrkFace 140.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y FuseA 1210 0 0 1210 0.0 0.0 1 1 2 1 TA 7 Typ 0 NaN Attchd 1953.0 Fin 1.0 616.0 TA TA Y 208 0 100 0 0 0 NaN MnPrv NaN 0 8 2009 ConLD Normal NaN
1779 1780 60 RL 78.0 11419 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Artery Norm 1Fam 2Story 7 7 1948 1999 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA TA Mn ALQ 699.0 Unf 0.0 0.0 699.0 GasA ... Y FuseA 801 726 0 1527 1.0 0.0 1 1 3 1 TA 6 Typ 1 Gd Attchd 1948.0 Unf 2.0 410.0 TA TA Y 0 0 134 0 0 0 NaN GdWo NaN 0 12 2009 WD Normal NaN
1780 1781 20 RL 60.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1950 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No BLQ 390.0 Unf 0.0 810.0 1200.0 GasA ... Y SBrkr 1200 0 0 1200 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1950.0 Fin 1.0 246.0 TA TA Y 126 0 0 0 0 0 NaN GdWo NaN 0 8 2009 WD Normal NaN
1781 1782 20 RL 53.0 5470 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 3 5 1958 1958 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 792.0 792.0 GasA ... Y FuseA 792 0 0 792 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1958.0 Unf 1.0 366.0 Fa TA Y 0 90 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1782 1783 60 RL 60.0 10800 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 5 7 1939 2006 Gable CompShg VinylSd VinylSd None 0.0 TA Gd BrkTil TA TA No Unf 0.0 Unf 0.0 676.0 676.0 GasA ... Y SBrkr 676 676 0 1352 0.0 1.0 2 0 4 1 Gd 7 Typ 0 NaN Detchd 1939.0 Unf 2.0 720.0 TA TA Y 187 0 128 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1783 1784 70 RL 80.0 8146 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 2Story 4 8 1900 2003 Gable CompShg MetalSd MetalSd None 0.0 Gd Gd BrkTil Fa TA No Unf 0.0 Unf 0.0 405.0 405.0 GasA ... Y SBrkr 717 322 0 1039 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1940.0 Unf 1.0 281.0 TA TA N 0 0 168 0 111 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1784 1785 30 RL 60.0 10230 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 7 1925 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 1054.0 1054.0 GasA ... Y SBrkr 1078 0 0 1078 0.0 0.0 1 0 3 1 Ex 6 Typ 0 NaN Detchd 1987.0 Unf 1.0 264.0 TA TA N 0 0 0 0 112 0 NaN GdWo NaN 0 12 2009 WD Normal NaN
1785 1786 50 RL 60.0 10410 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 4 5 1915 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 1313.0 1313.0 GasA ... Y SBrkr 1313 0 1064 2377 0.0 0.0 2 0 3 1 Gd 8 Min2 1 TA Detchd 1954.0 Unf 2.0 528.0 TA TA Y 0 0 432 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1786 1787 70 RL 60.0 7200 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Artery Norm 1Fam 2Story 7 9 1910 2008 Gable CompShg VinylSd VinylSd None 0.0 Gd Gd PConc TA TA No Unf 0.0 Unf 0.0 560.0 560.0 GasA ... Y SBrkr 930 760 0 1690 0.0 0.0 2 0 4 1 Gd 5 Typ 0 NaN Detchd 2008.0 Unf 2.0 624.0 TA TA Y 0 0 112 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1787 1788 30 RL 90.0 5400 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1Story 2 5 1940 1950 Gable CompShg Stucco Stucco None 0.0 Fa TA PConc Fa TA No Unf 0.0 Unf 0.0 416.0 416.0 GasA ... N FuseA 599 0 0 599 1.0 0.0 1 0 2 1 Gd 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 81 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1788 1789 30 RL 60.0 10800 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 7 1920 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 720.0 720.0 GasA ... N SBrkr 846 0 0 846 0.0 0.0 1 0 2 1 Gd 4 Typ 0 NaN Detchd 1980.0 Fin 2.0 576.0 TA TA N 0 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1789 1790 30 RL 60.0 10800 Pave Grvl Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1Story 3 5 1890 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 630.0 630.0 GasA ... Y FuseA 725 0 0 725 0.0 0.0 1 1 1 1 TA 4 Typ 0 NaN Detchd 1959.0 Unf 1.0 320.0 TA TA Y 0 30 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal NaN
1790 1791 90 RL 81.0 9671 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Artery Norm Duplex 2Story 6 5 1969 1969 Gable CompShg MetalSd MetalSd Stone 480.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1248.0 1248.0 GasA ... Y SBrkr 1248 1296 0 2544 0.0 0.0 2 2 6 2 TA 12 Typ 0 NaN Attchd 1969.0 RFn 3.0 907.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1791 1792 20 RL 83.0 10143 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 7 1963 1963 Gable CompShg HdBoard HdBoard BrkFace 295.0 TA TA CBlock TA TA No Rec 384.0 Unf 0.0 996.0 1380.0 GasA ... Y SBrkr 1380 0 0 1380 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1963.0 Unf 1.0 364.0 TA TA Y 0 0 0 0 216 0 NaN GdWo NaN 0 6 2009 WD Normal NaN
1792 1793 20 RL 77.0 11500 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 4 1967 1967 Gable CompShg HdBoard HdBoard None 0.0 Fa TA CBlock TA Fa No BLQ 872.0 Rec 60.0 108.0 1040.0 GasA ... Y SBrkr 1040 0 0 1040 1.0 0.0 1 0 3 1 TA 6 Min1 1 Po Attchd 1967.0 RFn 2.0 480.0 TA TA Y 0 0 156 0 0 0 NaN MnPrv NaN 0 5 2009 WD Normal NaN
1793 1794 20 RL 62.0 8010 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 9 1958 2007 Hip CompShg Wd Sdng Wd Sdng None 0.0 Gd Gd CBlock TA TA Mn GLQ 745.0 Unf 0.0 206.0 951.0 GasA ... Y SBrkr 951 0 0 951 1.0 0.0 1 0 2 1 Gd 6 Typ 0 NaN Detchd 1985.0 Unf 2.0 480.0 TA TA Y 0 0 42 0 0 0 NaN NaN Shed 450 9 2009 WD Normal NaN
1794 1795 20 RL 90.0 10454 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 6 1957 1957 Hip CompShg Plywood Plywood Stone 143.0 TA TA CBlock TA TA No Rec 546.0 Unf 0.0 559.0 1105.0 GasA ... Y FuseA 1105 0 0 1105 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1957.0 Unf 1.0 308.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal NaN
1795 1796 20 RL 80.0 9000 Pave NaN IR1 HLS AllPub Inside Mod NAmes Norm Norm 1Fam 1Story 6 6 1958 1958 Flat Tar&Grv Wd Sdng Wd Sdng BrkFace 82.0 TA TA CBlock Gd TA Gd Unf 0.0 Unf 0.0 160.0 160.0 GasA ... Y SBrkr 1142 0 0 1142 0.0 0.0 1 0 2 1 TA 5 Typ 1 Gd Basment 1958.0 RFn 1.0 384.0 TA TA Y 0 28 64 0 0 0 NaN NaN NaN 0 4 2009 WD Normal NaN
1796 1797 50 RL 60.0 8064 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Artery Norm 1Fam 1.5Fin 6 5 1950 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Av Rec 621.0 Unf 0.0 174.0 795.0 GasA ... N SBrkr 765 368 0 1133 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1989.0 Unf 2.0 900.0 TA TA Y 0 0 0 0 231 0 NaN NaN NaN 0 12 2009 COD Abnorml NaN
1797 1798 20 RL 71.0 7350 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1958 1958 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1041.0 1041.0 GasA ... Y SBrkr 1041 0 0 1041 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1958.0 RFn 1.0 294.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 3 2009 WD Normal NaN
1798 1799 20 RL 60.0 7200 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 7 1952 1952 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA Gd No ALQ 630.0 BLQ 102.0 0.0 732.0 GasA ... Y SBrkr 732 0 0 732 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1952.0 Unf 1.0 240.0 TA TA Y 0 68 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal NaN
1799 1800 80 RL 80.0 8000 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 5 5 1959 1959 Gable CompShg BrkFace Plywood None 0.0 TA TA CBlock Gd TA Av GLQ 433.0 Rec 95.0 0.0 528.0 GasA ... Y SBrkr 1183 0 0 1183 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1959.0 RFn 1.0 288.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 7 2009 WD Normal NaN
1800 1801 50 RL 60.0 10800 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Artery Norm 1Fam 1.5Fin 4 7 1949 1996 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 832.0 832.0 GasA ... Y FuseF 832 629 0 1461 0.0 0.0 2 0 4 1 TA 6 Typ 0 NaN Detchd 1949.0 Unf 1.0 384.0 TA TA Y 0 204 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1801 1802 50 RL 60.0 8064 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Artery Norm 1Fam 1.5Fin 6 7 1948 1994 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No LwQ 120.0 Unf 0.0 744.0 864.0 GasA ... Y SBrkr 1064 0 431 1495 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1994.0 Unf 2.0 576.0 TA TA Y 180 36 0 0 0 0 NaN NaN NaN 0 8 2009 COD Abnorml NaN
1802 1803 60 RL 76.0 7570 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 2Story 6 5 1964 1964 Gable CompShg HdBoard HdBoard BrkFace 420.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 780.0 780.0 GasA ... Y SBrkr 993 813 0 1806 0.0 0.0 1 1 4 1 TA 8 Typ 0 NaN Attchd 1964.0 Unf 2.0 483.0 TA TA Y 0 55 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1803 1804 90 RL 75.0 8604 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm Duplex SFoyer 5 7 1978 1978 Gable CompShg Plywood Plywood BrkFace 124.0 TA Gd CBlock Gd TA Av GLQ 941.0 Unf 0.0 0.0 941.0 GasA ... Y SBrkr 941 0 0 941 1.0 0.0 1 0 2 1 Gd 4 Typ 0 NaN Attchd 1978.0 Unf 2.0 564.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal NaN
1804 1805 20 RL 80.0 7936 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1963 1963 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No BLQ 826.0 Unf 0.0 219.0 1045.0 GasA ... Y SBrkr 1045 0 0 1045 1.0 0.0 1 0 3 1 TA 6 Typ 1 Fa Attchd 1963.0 RFn 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal NaN
1805 1806 50 RM 68.0 4080 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 6 8 1935 1998 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 901.0 901.0 GasA ... Y SBrkr 861 517 0 1378 0.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Detchd 1920.0 Unf 1.0 162.0 Fa Fa P 54 0 40 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1806 1807 90 RM 57.0 10307 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm Duplex 2Story 6 5 1910 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Mn LwQ 633.0 Unf 0.0 339.0 972.0 GasA ... N FuseA 972 972 0 1944 1.0 0.0 2 0 4 2 TA 12 Typ 0 NaN Detchd 1920.0 Unf 2.0 324.0 Fa TA N 0 28 169 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1807 1808 50 RM 90.0 15660 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 8 1910 2003 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA TA No Unf 0.0 Unf 0.0 240.0 240.0 GasA ... Y SBrkr 810 496 0 1306 0.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN Detchd 1959.0 Unf 2.0 472.0 Fa TA N 0 0 0 0 0 0 NaN MnPrv NaN 0 7 2009 WD Normal NaN
1808 1809 70 RM 90.0 9900 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 2Story 5 8 1910 2002 Gable CompShg VinylSd VinylSd None 0.0 Gd TA CBlock TA TA No Unf 0.0 Unf 0.0 504.0 504.0 GasA ... Y SBrkr 764 700 0 1464 0.0 0.0 2 0 3 1 TA 7 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 176 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1809 1810 70 RM 57.0 6406 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 5 6 1939 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No ALQ 421.0 Unf 0.0 269.0 690.0 GasA ... Y FuseA 868 690 0 1558 0.0 0.0 1 1 3 1 TA 7 Typ 1 Gd Detchd 1939.0 Unf 2.0 400.0 TA TA Y 0 36 0 0 182 0 NaN MnPrv NaN 0 10 2009 WD Normal NaN
1810 1811 190 RM 63.0 7627 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Artery Norm 2fmCon 2Story 4 6 1920 1950 Gable CompShg AsbShng AsbShng None 0.0 Fa TA BrkTil Fa Po No Unf 0.0 Unf 0.0 600.0 600.0 GasA ... N SBrkr 1101 600 0 1701 0.0 0.0 2 0 4 2 Fa 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 148 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1811 1812 50 RM 56.0 10134 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 5 1910 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil Fa TA No Unf 0.0 Unf 0.0 801.0 801.0 GasA ... N SBrkr 801 646 0 1447 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 80 0 244 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1812 1813 50 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 7 1950 1970 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Ex CBlock TA TA No BLQ 384.0 Unf 0.0 384.0 768.0 GasA ... Y FuseA 768 560 0 1328 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1950.0 Unf 1.0 308.0 TA TA Y 0 12 0 0 0 0 NaN MnPrv NaN 0 3 2009 WD Normal NaN
1813 1814 30 RM 62.0 7404 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1Story 4 6 1920 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil Fa TA No Unf 0.0 Unf 0.0 861.0 861.0 GasA ... Y SBrkr 861 0 0 861 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1920.0 Unf 2.0 288.0 TA TA N 0 0 128 0 0 0 NaN NaN NaN 0 11 2009 Oth Normal NaN
1814 1815 30 RM 50.0 5925 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1Story 2 4 1940 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Gd BrkTil NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N FuseA 612 0 0 612 0.0 0.0 1 0 1 1 TA 4 Typ 0 NaN Detchd 1965.0 Unf 1.0 308.0 TA Fa N 0 0 25 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1815 1816 30 RM 60.0 8520 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 8 1923 1950 Gable CompShg Stucco Stucco None 0.0 Gd TA PConc Fa TA No Unf 0.0 Unf 0.0 624.0 624.0 GasA ... Y SBrkr 792 0 0 792 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1963.0 Unf 1.0 287.0 TA TA Y 0 0 81 0 0 0 NaN GdWo NaN 0 2 2009 WD Normal NaN
1816 1817 70 RM 60.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 4 4 1910 1950 Gable CompShg VinylSd VinylSd None 0.0 Gd Gd BrkTil Fa TA No Unf 0.0 Unf 0.0 677.0 677.0 GasA ... Y SBrkr 833 677 0 1510 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Detchd 1974.0 Unf 2.0 720.0 TA TA N 0 0 160 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1817 1818 70 RM 70.0 8400 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Artery Norm 1Fam 2Story 6 7 1900 1950 Gable CompShg Stucco BrkFace None 0.0 TA TA BrkTil Fa Gd Mn Unf 0.0 Unf 0.0 917.0 917.0 GasA ... Y FuseA 1090 917 0 2007 0.0 0.0 2 0 3 1 Ex 8 Typ 0 NaN Detchd 1930.0 Unf 1.0 357.0 TA TA Y 0 235 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1818 1819 70 RM 60.0 3600 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 6 7 1917 2007 Gable CompShg Stucco Stucco None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 624.0 624.0 GasA ... Y SBrkr 664 624 0 1288 1.0 0.0 1 0 3 1 Ex 5 Typ 1 Gd Attchd 1917.0 Unf 1.0 280.0 TA TA N 0 103 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1819 1820 30 C (all) NaN 3300 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 4 3 1910 1950 Gable CompShg Stucco Stucco None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 624.0 624.0 GasA ... Y SBrkr 816 0 0 816 0.0 0.0 1 0 2 1 TA 5 Typ 1 Gd NaN NaN NaN 0.0 0.0 NaN NaN N 0 33 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1820 1821 50 RM 60.0 5400 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 6 6 1920 1950 Gable CompShg MetalSd MetalSd None 0.0 Fa TA BrkTil TA TA No Unf 0.0 Unf 0.0 972.0 972.0 GasA ... Y SBrkr 1044 0 436 1480 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1920.0 Unf 1.0 207.0 Fa TA Y 0 0 176 0 0 0 NaN NaN NaN 0 9 2009 ConLI Family NaN
1821 1822 70 RM 60.0 9720 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 6 7 1910 2002 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 741.0 741.0 GasA ... Y SBrkr 780 741 0 1521 0.0 0.0 1 0 4 1 Gd 8 Typ 0 NaN Detchd 1950.0 Unf 3.0 640.0 TA TA Y 0 0 238 0 0 0 NaN MnPrv NaN 0 9 2009 WD Normal NaN
1822 1823 30 C (all) 72.0 9392 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Norm Norm 1Fam 1Story 3 3 1900 1950 Mansard CompShg AsbShng AsbShng None 0.0 TA Fa CBlock Fa TA No Unf 0.0 Unf 0.0 245.0 245.0 GasA ... N SBrkr 797 0 0 797 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 36 94 0 0 0 NaN NaN NaN 0 9 2009 WD Abnorml NaN
1823 1824 30 RL NaN 6615 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 6 6 1923 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 1022.0 1022.0 GasA ... N FuseA 1432 0 0 1432 0.0 0.0 1 0 3 1 Gd 6 Typ 1 Gd BuiltIn 1923.0 Unf 1.0 216.0 Fa TA Y 266 61 0 0 0 0 NaN GdWo NaN 0 9 2009 WD Normal NaN
1824 1825 70 RL 50.0 4960 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide RRAn Norm 1Fam 1.5Fin 5 7 1930 1982 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 297.0 297.0 GasA ... Y SBrkr 1001 653 0 1654 0.0 0.0 2 0 3 1 TA 7 Typ 1 Gd Detchd 1955.0 Unf 1.0 336.0 TA TA N 244 60 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1825 1826 50 RM 60.0 6000 Pave NaN Reg Lvl AllPub Corner Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 5 1924 1950 Gable CompShg Stucco Stucco BrkFace 444.0 TA TA BrkTil TA TA No Rec 220.0 Unf 0.0 248.0 468.0 GasA ... Y SBrkr 822 320 0 1142 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1924.0 Fin 1.0 320.0 TA TA Y 0 0 98 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1826 1827 30 RM 51.0 6120 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 5 6 1925 1999 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 960.0 960.0 GasA ... Y SBrkr 995 0 0 995 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1926.0 Unf 1.0 264.0 TA TA Y 0 15 51 0 0 0 NaN MnPrv NaN 0 3 2009 WD Abnorml NaN
1827 1828 50 RM 51.0 6120 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 6 1938 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA Fa No LwQ 273.0 Unf 0.0 679.0 952.0 GasA ... Y FuseA 994 588 0 1582 0.0 0.0 2 0 3 1 TA 6 Typ 1 Gd Detchd 1938.0 Unf 1.0 250.0 Fa TA Y 189 0 34 150 0 0 NaN NaN NaN 0 2 2009 WD Normal NaN
1828 1829 30 RM 50.0 8635 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 5 5 1925 1950 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA Fa BrkTil TA TA No LwQ 134.0 Unf 0.0 938.0 1072.0 GasA ... Y SBrkr 1072 0 0 1072 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1982.0 Unf 5.0 1184.0 Fa TA P 0 0 105 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1829 1830 70 RM 57.0 8094 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 6 6 1915 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 1048.0 1048.0 GasA ... Y FuseA 1048 720 0 1768 0.0 0.0 2 0 3 1 TA 8 Typ 0 NaN Detchd 1930.0 Unf 2.0 576.0 Fa Fa Y 0 0 150 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1830 1831 70 RM 68.0 9928 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 7 8 1915 1994 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd BrkTil TA TA No Unf 0.0 Unf 0.0 672.0 672.0 GasA ... Y SBrkr 1272 672 0 1944 0.0 0.0 2 0 3 1 TA 8 Min2 0 NaN Detchd 1915.0 Unf 1.0 216.0 TA TA N 24 28 0 0 0 0 NaN NaN Shed 400 6 2009 WD Normal NaN
1831 1832 90 RM 50.0 3000 Pave Grvl Reg Bnk AllPub Inside Gtl OldTown Norm Norm Duplex 2Story 5 1 1922 1950 Hip CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA Fa No Unf 0.0 Unf 0.0 1040.0 1040.0 GasA ... N SBrkr 1088 1040 0 2128 0.0 0.0 2 0 4 2 TA 11 Sev 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 56 0 0 0 0 NaN NaN NaN 0 9 2009 WD Abnorml NaN
1832 1833 70 RM 57.0 6876 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 2Story 6 5 1927 1950 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA Fa No BLQ 522.0 Unf 0.0 198.0 720.0 GasA ... Y SBrkr 1146 784 0 1930 1.0 0.0 2 0 4 1 TA 8 Typ 0 NaN Attchd 1927.0 Unf 1.0 316.0 TA TA Y 0 0 213 0 0 0 NaN MnPrv NaN 0 8 2009 WD Normal NaN
1833 1834 70 RM NaN 5775 Pave NaN IR2 Bnk AllPub Corner Mod OldTown Feedr Norm 1Fam 2Story 6 7 1915 2002 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 483.0 483.0 GasA ... Y SBrkr 741 686 0 1427 0.0 0.0 1 0 3 1 Gd 7 Typ 0 NaN Attchd 1915.0 Unf 1.0 379.0 TA TA Y 0 24 112 0 0 0 NaN NaN NaN 0 2 2009 WD Normal NaN
1834 1835 190 RM 41.0 5852 Pave NaN IR3 Bnk AllPub Corner Gtl OldTown Feedr Norm 2fmCon 2.5Unf 7 5 1902 2000 Gable CompShg MetalSd MetalSd Stone 188.0 TA Fa BrkTil TA Fa No Rec 169.0 Unf 0.0 851.0 1020.0 GasA ... N FuseF 978 886 0 1864 0.0 0.0 2 1 6 1 TA 9 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 188 102 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1835 1836 50 RM 60.0 5160 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Norm Norm 1Fam 1.5Fin 6 6 1927 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Fa BrkTil TA TA No Unf 0.0 Unf 0.0 1204.0 1204.0 GasA ... Y FuseA 1204 462 0 1666 0.0 0.0 1 0 3 1 TA 4 Typ 0 NaN Detchd 1927.0 Unf 1.0 384.0 Fa TA Y 0 0 148 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1836 1837 85 RM 86.0 5160 Pave Grvl Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam SFoyer 4 6 1923 1950 Hip CompShg MetalSd MetalSd None 0.0 TA Gd PConc Gd Fa Av BLQ 749.0 Rec 63.0 46.0 858.0 GasA ... Y SBrkr 892 0 0 892 1.0 0.0 1 0 1 1 Gd 5 Min2 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 105 0 160 0 NaN NaN NaN 0 7 2009 COD Abnorml NaN
1837 1838 190 RM 60.0 10320 Pave Grvl Reg Bnk AllPub Inside Gtl IDOTRR Artery Norm 2fmCon 2Story 6 7 1915 1965 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No Rec 276.0 ALQ 262.0 160.0 698.0 GasA ... Y FuseF 754 649 0 1403 1.0 0.0 1 1 3 1 TA 7 Typ 0 NaN Detchd 1915.0 Unf 1.0 308.0 TA TA Y 0 0 288 0 0 0 NaN NaN NaN 0 2 2009 WD Normal NaN
1838 1839 20 RL 50.0 4280 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 4 9 1946 2001 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock Fa TA No Unf 0.0 Unf 0.0 560.0 560.0 GasA ... Y FuseA 704 0 0 704 0.0 1.0 1 0 2 1 Fa 4 Typ 0 NaN CarPort 1946.0 Unf 1.0 220.0 TA TA Y 0 0 24 0 0 0 NaN NaN NaN 0 9 2009 WD Normal NaN
1839 1840 90 RL 60.0 10800 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm Duplex 1Story 5 5 1987 1988 Gable CompShg Plywood Plywood None 0.0 TA Gd CBlock Gd Gd Gd GLQ 1200.0 Unf 0.0 0.0 1200.0 GasA ... Y SBrkr 1200 0 0 1200 3.0 0.0 3 0 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 120 0 0 0 0 0 NaN NaN NaN 0 3 2009 WD Alloca NaN
1840 1841 90 RL NaN 10547 Pave NaN IR1 Lvl AllPub Inside Gtl Edwards Norm Norm Duplex SFoyer 5 5 1978 1978 Gable CompShg Plywood Plywood None 0.0 TA TA PConc Gd Gd Gd GLQ 1152.0 Unf 0.0 0.0 1152.0 GasA ... Y SBrkr 1152 0 0 1152 2.0 0.0 2 0 2 2 TA 6 Typ 0 NaN Detchd 1960.0 Unf 1.0 252.0 TA Fa N 0 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1841 1842 50 RL 60.0 9780 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 5 3 1934 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 585.0 585.0 GasA ... N FuseA 687 425 0 1112 1.0 0.0 2 0 4 1 TA 6 Typ 0 NaN Detchd 1934.0 Unf 1.0 226.0 Po Po N 0 0 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1842 1843 20 RL 75.0 11625 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 6 1967 1967 Hip CompShg HdBoard HdBoard BrkFace 172.0 TA TA CBlock TA TA No BLQ 527.0 Unf 0.0 525.0 1052.0 GasA ... Y SBrkr 1052 0 0 1052 0.0 0.0 1 1 3 1 TA 6 Typ 1 Po Attchd 1984.0 Fin 1.0 668.0 TA TA Y 0 215 0 0 0 0 NaN NaN NaN 0 4 2009 WD Abnorml NaN
1843 1844 85 RL NaN 8014 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer Norm Norm 1Fam SFoyer 6 5 1978 1978 Gable CompShg Plywood HdBoard BrkFace 23.0 TA TA CBlock Gd TA Gd GLQ 456.0 Unf 0.0 0.0 456.0 GasA ... Y SBrkr 1034 0 0 1034 0.0 1.0 1 0 3 1 TA 5 Typ 1 Fa Basment 1978.0 Fin 2.0 504.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1844 1845 80 RL 88.0 15400 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam SLvl 5 5 1961 1961 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA Gd No Unf 0.0 Unf 0.0 552.0 552.0 GasA ... Y SBrkr 904 611 259 1774 0.0 0.0 2 0 4 1 TA 8 Typ 1 TA Attchd 1961.0 Unf 1.0 384.0 TA TA Y 290 40 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1845 1846 80 RL 88.0 15312 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam SLvl 6 5 1960 1960 Hip CompShg Wd Sdng Wd Sdng BrkFace 54.0 TA TA CBlock TA TA Av BLQ 588.0 Unf 0.0 550.0 1138.0 GasA ... Y SBrkr 1138 0 0 1138 0.0 1.0 1 0 3 1 TA 6 Typ 1 TA Attchd 1960.0 RFn 2.0 480.0 TA TA Y 0 0 0 0 140 0 NaN MnPrv NaN 0 3 2009 COD Normal NaN
1846 1847 80 RL NaN 15584 Pave NaN Reg Lvl AllPub Inside Gtl ClearCr Norm Norm 1Fam SLvl 5 5 1956 1956 Hip CompShg Wd Sdng Wd Sdng BrkFace 366.0 TA TA CBlock TA TA Mn Unf 0.0 Unf 0.0 825.0 825.0 GasA ... Y SBrkr 2071 0 0 2071 0.0 1.0 1 1 4 1 TA 9 Typ 1 TA Attchd 1956.0 Unf 1.0 336.0 TA TA Y 131 28 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1847 1848 20 RL NaN 9000 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Norm Norm 1Fam 1Story 2 2 1947 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N SBrkr 660 0 0 660 0.0 0.0 1 0 2 1 Fa 5 Min2 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 100 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1848 1849 20 RL NaN 15635 Pave NaN IR1 Lvl AllPub CulDSac Gtl Edwards Norm Norm 1Fam 1Story 4 5 1954 1954 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1383 0 0 1383 0.0 0.0 1 0 2 1 TA 6 Mod 0 NaN Attchd 1980.0 Unf 2.0 498.0 Fa TA Y 0 0 90 0 110 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1849 1850 20 RL 68.0 9571 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 5 1956 1956 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 257.0 Unf 0.0 816.0 1073.0 GasA ... Y FuseA 1073 0 0 1073 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1956.0 Unf 1.0 340.0 TA TA Y 0 0 0 0 0 0 NaN GdPrv NaN 0 2 2009 WD Normal NaN
1850 1851 60 RL 50.0 9350 Pave NaN Reg Bnk AllPub Inside Gtl Edwards Norm Norm 1Fam 2Story 6 7 1946 1950 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No BLQ 342.0 Unf 0.0 405.0 747.0 GasA ... Y SBrkr 892 747 0 1639 0.0 0.0 1 1 3 1 Gd 6 Typ 1 Gd Detchd 1946.0 Unf 1.0 240.0 TA TA Y 0 50 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1851 1852 20 RL 62.0 7440 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 6 1954 1954 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock Gd TA No BLQ 173.0 Unf 0.0 916.0 1089.0 GasW ... Y SBrkr 1089 0 0 1089 1.0 0.0 1 0 3 1 TA 5 Typ 1 Gd Detchd 1954.0 RFn 1.0 252.0 TA TA P 328 0 0 0 0 0 NaN MnPrv NaN 0 9 2009 WD Normal NaN
1852 1853 120 RL 42.0 4235 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm TwnhsE 1Story 5 5 1984 1984 Gable CompShg HdBoard HdBoard BrkFace 149.0 Gd TA CBlock Gd TA Mn GLQ 552.0 ALQ 393.0 104.0 1049.0 GasA ... Y SBrkr 1049 0 0 1049 1.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 1984.0 Fin 1.0 266.0 TA TA Y 0 105 0 0 0 0 NaN NaN NaN 0 2 2009 WD Normal NaN
1853 1854 80 RL 74.0 10778 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Feedr Norm 1Fam SLvl 7 6 1990 1991 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA No GLQ 460.0 ALQ 286.0 308.0 1054.0 GasA ... Y SBrkr 1061 0 0 1061 1.0 0.0 1 1 1 1 Gd 4 Typ 0 NaN Attchd 1990.0 Unf 2.0 462.0 TA TA Y 114 36 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1854 1855 80 RL 66.0 19255 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam SLvl 6 5 1983 1983 Gable CompShg Wd Sdng Wd Sdng BrkFace 100.0 Gd TA CBlock Gd TA Av Rec 70.0 GLQ 450.0 0.0 520.0 GasA ... Y SBrkr 1338 0 0 1338 0.0 0.0 1 1 2 1 Gd 5 Min2 1 Po Attchd 1983.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN NaN Shed 600 9 2009 WD Normal NaN
1855 1856 60 RL 85.0 10560 Pave NaN Reg Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam 2Story 7 5 1993 1994 Gable CompShg VinylSd VinylSd None 0.0 Gd Gd PConc Gd Gd No GLQ 474.0 Unf 0.0 605.0 1079.0 GasA ... Y SBrkr 1079 800 0 1879 1.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1993.0 RFn 2.0 473.0 TA TA Y 400 100 144 0 0 0 NaN MnPrv NaN 0 8 2009 WD Normal NaN
1856 1857 70 RL 120.0 26400 Pave NaN Reg Bnk AllPub FR2 Gtl SawyerW Feedr Norm 1Fam 2Story 5 7 1880 2007 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1288 728 0 2016 0.0 0.0 1 0 4 1 TA 7 Mod 1 TA Attchd 1900.0 Unf 2.0 576.0 TA TA P 0 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1857 1858 90 RL 64.0 7018 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Feedr Norm Duplex 2Story 5 5 1979 1979 Gable CompShg HdBoard HdBoard None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1114 1114 0 2228 0.0 0.0 2 0 6 2 TA 8 Typ 0 NaN Detchd 1979.0 Unf 2.0 720.0 TA TA Y 73 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Alloca NaN
1858 1859 90 RL 64.0 7018 Pave NaN Reg Bnk AllPub Inside Gtl SawyerW Norm Norm Duplex 1Story 5 5 1979 1979 Gable CompShg HdBoard HdBoard None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1535 0 0 1535 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Attchd 1979.0 Unf 2.0 400.0 TA TA Y 0 0 0 0 0 0 NaN GdPrv NaN 0 6 2009 WD Alloca NaN
1859 1860 90 RL 64.0 7040 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Feedr Norm Duplex SFoyer 5 5 1979 1979 Gable CompShg Plywood Plywood BrkFace 216.0 TA TA CBlock Gd TA Av GLQ 1094.0 Unf 0.0 0.0 1094.0 GasA ... Y SBrkr 1229 0 0 1229 2.0 0.0 0 2 2 2 Gd 6 Typ 2 TA Detchd 1979.0 Unf 2.0 672.0 TA TA Y 120 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Alloca NaN
1860 1861 90 RL 64.0 7007 Pave NaN Reg Bnk AllPub Inside Gtl SawyerW Norm Norm Duplex 1Story 5 5 1979 1979 Gable CompShg HdBoard HdBoard None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1513 0 0 1513 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Attchd 1979.0 Unf 2.0 400.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2009 WD Alloca NaN
1861 1862 90 RL NaN 11855 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm Duplex 2Story 7 5 2000 2000 Hip CompShg VinylSd VinylSd BrkFace 23.0 TA TA PConc Ex TA No GLQ 820.0 Unf 0.0 348.0 1168.0 GasA ... Y SBrkr 1168 1619 0 2787 2.0 0.0 4 2 6 2 TA 8 Typ 2 TA BuiltIn 2000.0 Fin 4.0 820.0 TA TA Y 312 0 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1862 1863 90 RL NaN 7939 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Feedr Norm Duplex 2Story 7 5 2000 2000 Hip CompShg VinylSd VinylSd BrkFace 23.0 TA TA PConc Ex TA No GLQ 820.0 Unf 0.0 348.0 1168.0 GasA ... Y SBrkr 1168 1619 0 2787 2.0 0.0 4 2 6 2 TA 8 Typ 2 TA BuiltIn 2000.0 Fin 4.0 820.0 TA TA Y 312 0 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1863 1864 90 RL NaN 7976 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Feedr Norm Duplex 2Story 7 5 2000 2000 Hip CompShg VinylSd VinylSd BrkFace 23.0 TA TA PConc Ex TA No GLQ 820.0 Unf 0.0 348.0 1168.0 GasA ... Y SBrkr 1168 1619 0 2787 2.0 0.0 4 2 6 2 TA 8 Typ 2 TA BuiltIn 2000.0 Fin 4.0 820.0 TA TA Y 312 0 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1864 1865 20 RL 84.0 10933 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 9 5 2009 2009 Hip CompShg VinylSd VinylSd Stone 242.0 Ex TA PConc Ex TA Gd GLQ 1021.0 Unf 0.0 534.0 1555.0 GasA ... Y SBrkr 1680 0 0 1680 1.0 0.0 1 1 1 1 Ex 8 Typ 1 Gd Attchd 2009.0 Fin 3.0 1138.0 TA TA Y 185 24 0 0 0 0 NaN NaN NaN 0 7 2009 New Partial NaN
1865 1866 20 RL 65.0 10816 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 9 5 2008 2008 Gable CompShg VinylSd VinylSd Stone 364.0 Ex TA PConc Ex TA Gd GLQ 1104.0 Unf 0.0 616.0 1720.0 GasA ... Y SBrkr 1720 0 0 1720 1.0 0.0 2 0 3 1 Ex 8 Typ 1 Gd Attchd 2008.0 RFn 3.0 846.0 TA TA Y 208 104 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal NaN
1866 1867 20 RL 71.0 9178 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2008 2008 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1468.0 1468.0 GasA ... Y SBrkr 1468 0 0 1468 0.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2008.0 RFn 3.0 904.0 TA TA Y 192 142 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1867 1868 20 RL 77.0 11422 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2007 2008 Hip CompShg VinylSd VinylSd Stone 352.0 Gd TA PConc Ex TA Av GLQ 1359.0 Unf 0.0 479.0 1838.0 GasA ... Y SBrkr 1838 0 0 1838 1.0 0.0 2 0 3 1 Gd 7 Typ 2 Gd Attchd 2007.0 RFn 2.0 524.0 TA TA Y 154 222 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal NaN
1868 1869 20 RL 64.0 6762 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 902.0 Unf 0.0 380.0 1282.0 GasA ... Y SBrkr 1290 0 0 1290 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2007.0 RFn 2.0 662.0 TA TA Y 168 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1869 1870 20 RL 95.0 10324 Pave NaN IR1 Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2008 2008 Gable CompShg VinylSd VinylSd BrkFace 140.0 Gd TA PConc Gd TA Av GLQ 872.0 Unf 0.0 382.0 1254.0 GasA ... Y SBrkr 1254 0 0 1254 1.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 2008.0 RFn 3.0 810.0 TA TA Y 168 92 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1870 1871 20 RL 78.0 11645 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2005 2006 Gable CompShg VinylSd VinylSd Stone 76.0 Gd TA PConc Ex TA Gd GLQ 24.0 Unf 0.0 1474.0 1498.0 GasA ... Y SBrkr 1498 0 0 1498 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2005.0 Fin 3.0 844.0 TA TA Y 144 98 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1871 1872 60 RL 79.0 11646 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 6 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 704.0 704.0 GasA ... Y SBrkr 704 718 0 1422 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2005.0 Fin 2.0 440.0 TA TA Y 36 28 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1872 1873 60 RL NaN 16698 Pave NaN IR1 HLS AllPub CulDSac Mod ClearCr Norm Norm 1Fam 2Story 7 5 1992 1993 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 800.0 Unf 0.0 649.0 1449.0 GasA ... Y SBrkr 944 815 0 1759 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1992.0 Unf 2.0 525.0 TA TA Y 150 193 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1873 1874 20 RL 65.0 9757 Pave NaN Reg Low AllPub Inside Mod CollgCr Norm Norm 1Fam 1Story 5 7 1994 1994 Gable CompShg VinylSd VinylSd None 0.0 TA Gd PConc TA TA No ALQ 755.0 Unf 0.0 235.0 990.0 GasA ... Y SBrkr 990 0 0 990 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1995.0 RFn 1.0 440.0 TA TA Y 66 0 0 0 92 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1874 1875 20 RL 65.0 14753 Pave NaN IR2 Low AllPub Inside Gtl CollgCr PosN Norm 1Fam 1Story 7 5 1998 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Mn GLQ 950.0 Unf 0.0 513.0 1463.0 GasA ... Y SBrkr 1463 0 0 1463 1.0 0.0 2 0 3 1 TA 5 Typ 0 NaN Attchd 1998.0 Fin 2.0 539.0 TA TA Y 0 81 0 0 0 0 NaN GdPrv NaN 0 12 2009 WD Normal NaN
1875 1876 60 RL 70.0 8750 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 6 5 1998 1998 Gable CompShg VinylSd VinylSd BrkFace 120.0 TA TA PConc Gd TA No GLQ 606.0 Unf 0.0 322.0 928.0 GasA ... Y SBrkr 928 844 0 1772 1.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1998.0 RFn 2.0 492.0 TA TA Y 150 96 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal NaN
1876 1877 20 RL 65.0 10739 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2002 2001 Gable CompShg VinylSd VinylSd BrkFace 68.0 Gd TA PConc Gd TA No GLQ 1259.0 Unf 0.0 172.0 1431.0 GasA ... Y SBrkr 1444 0 0 1444 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2002.0 RFn 2.0 577.0 TA TA Y 144 40 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal NaN
1877 1878 20 RL 75.0 11166 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2001 2001 Gable CompShg VinylSd VinylSd BrkFace 180.0 Gd TA PConc Gd TA Mn GLQ 24.0 Unf 0.0 1468.0 1492.0 GasA ... Y SBrkr 1492 0 0 1492 0.0 0.0 2 0 3 1 Gd 6 Typ 1 TA Attchd 2001.0 RFn 2.0 608.0 TA TA Y 0 114 0 0 168 0 NaN NaN NaN 0 7 2009 WD Family NaN
1878 1879 20 RL NaN 16269 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 1Story 5 5 1978 1978 Gable CompShg MetalSd MetalSd BrkFace 76.0 TA TA BrkTil Gd TA Av GLQ 625.0 Unf 0.0 282.0 907.0 GasA ... Y SBrkr 907 0 0 907 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1978.0 Unf 1.0 343.0 TA TA Y 72 0 0 0 0 0 NaN MnPrv NaN 0 7 2009 WD Normal NaN
1879 1880 20 RL 76.0 6950 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 7 1979 1979 Gable CompShg HdBoard HdBoard BrkFace 40.0 TA TA CBlock TA TA No ALQ 710.0 BLQ 72.0 132.0 914.0 GasA ... Y SBrkr 914 0 0 914 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1979.0 Unf 2.0 444.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1880 1881 20 RL 90.0 11664 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2002 2002 Hip CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 1234.0 Unf 0.0 335.0 1569.0 GasA ... Y SBrkr 1611 0 0 1611 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2002.0 RFn 3.0 1231.0 TA TA Y 262 93 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal NaN
1881 1882 60 RL NaN 12334 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 8 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 198.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1068.0 1068.0 GasA ... Y SBrkr 1068 1116 0 2184 0.0 0.0 2 1 4 1 Gd 8 Typ 1 Gd BuiltIn 2003.0 RFn 2.0 570.0 TA TA Y 192 132 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1882 1883 60 RL 70.0 8749 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd NaN NaN Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 840.0 840.0 GasA ... Y SBrkr 840 885 0 1725 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2002.0 RFn 2.0 550.0 TA TA Y 0 48 0 0 0 0 NaN NaN NaN 0 11 2009 WD Normal NaN
1883 1884 60 RL NaN 11250 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2001 2001 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 944.0 944.0 GasA ... Y SBrkr 944 926 0 1870 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2001.0 RFn 2.0 608.0 TA TA Y 256 43 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1884 1885 20 RL 90.0 15750 Pave NaN Reg Lvl AllPub FR3 Gtl CollgCr Feedr Norm 1Fam 1Story 8 5 1999 2000 Gable CompShg VinylSd VinylSd BrkFace 260.0 Gd TA PConc Gd TA Gd GLQ 1246.0 Unf 0.0 216.0 1462.0 GasA ... Y SBrkr 1513 0 0 1513 1.0 0.0 2 0 2 1 Gd 5 Typ 1 TA Attchd 1999.0 Fin 2.0 521.0 TA TA Y 135 34 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1885 1886 20 RL NaN 12782 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2002 2003 Hip CompShg HdBoard HdBoard BrkFace 164.0 Gd TA PConc Ex TA Gd GLQ 1360.0 Unf 0.0 462.0 1822.0 GasA ... Y SBrkr 1828 0 0 1828 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2002.0 Fin 2.0 523.0 TA TA Y 194 144 0 0 0 0 NaN NaN NaN 0 6 2009 WD Normal NaN
1886 1887 20 RL 70.0 8750 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 1997 1998 Gable CompShg VinylSd VinylSd BrkFace 209.0 Gd TA PConc Gd TA Av GLQ 1111.0 Unf 0.0 306.0 1417.0 GasA ... Y SBrkr 1417 0 0 1417 1.0 0.0 2 0 3 1 Gd 7 Typ 1 TA Attchd 1997.0 Unf 2.0 511.0 TA TA Y 60 0 0 0 117 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1887 1888 20 RL 85.0 10200 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd BrkFace 180.0 Gd TA PConc Gd TA Av GLQ 1478.0 Unf 0.0 100.0 1578.0 GasA ... Y SBrkr 1602 0 0 1602 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2007.0 RFn 3.0 810.0 TA TA Y 0 48 0 0 195 0 NaN NaN NaN 0 1 2009 WD Normal NaN
1888 1889 60 RL 85.0 11069 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 2Story 6 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 608.0 608.0 GasA ... Y SBrkr 608 788 0 1396 0.0 0.0 2 1 3 1 Gd 6 Typ 1 Gd BuiltIn 2007.0 Fin 2.0 440.0 TA TA Y 100 36 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1889 1890 20 RL 80.0 10682 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 6 1960 1971 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No GLQ 399.0 Unf 0.0 615.0 1014.0 GasA ... Y SBrkr 1149 0 0 1149 1.0 0.0 1 0 3 1 TA 7 Min1 0 NaN 2Types 1968.0 Fin 1.0 544.0 TA TA Y 0 240 0 0 0 0 NaN MnPrv NaN 0 7 2009 WD Normal NaN
1890 1891 180 RM 35.0 3675 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm TwnhsE SFoyer 6 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 80.0 TA TA Wood Gd TA Gd GLQ 547.0 Unf 0.0 0.0 547.0 GasA ... Y SBrkr 1072 0 0 1072 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Basment 2005.0 Fin 2.0 525.0 TA TA Y 0 28 0 0 0 0 NaN NaN NaN 0 4 2009 WD Normal NaN
1891 1892 20 RL 64.0 6410 Pave NaN Reg HLS AllPub Inside Mod Edwards Norm Norm 1Fam 1Story 4 5 1959 1959 Gable CompShg AsbShng AsbShng None 0.0 TA TA CBlock TA TA No LwQ 332.0 Rec 243.0 301.0 876.0 GasA ... Y FuseA 876 0 0 876 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1959.0 Unf 1.0 320.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 3 2009 WD Normal NaN
1892 1893 20 RL 70.0 11767 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 5 1950 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Fa TA Mn Rec 1078.0 Unf 0.0 0.0 1078.0 GasA ... Y FuseA 1368 0 0 1368 1.0 0.0 1 0 3 1 TA 6 Min1 0 NaN Attchd 1950.0 RFn 1.0 195.0 TA TA Y 0 41 211 0 0 0 NaN NaN Shed 900 6 2009 WD Normal NaN
1893 1894 90 RL 65.0 10926 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm Duplex 1Story 5 5 1959 1959 Hip CompShg VinylSd VinylSd BrkFace 74.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1678.0 1678.0 GasA ... Y SBrkr 1678 0 0 1678 0.0 0.0 2 0 6 2 TA 10 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2009 WD Normal NaN
1894 1895 20 RL 70.0 11767 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 5 1956 1956 Hip CompShg HdBoard HdBoard BrkFace 259.0 TA TA CBlock TA TA No Rec 546.0 Unf 0.0 604.0 1150.0 GasA ... Y SBrkr 1560 0 0 1560 0.0 0.0 1 0 2 1 TA 7 Min1 1 TA Attchd 1956.0 Unf 1.0 313.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1895 1896 50 RL 45.0 8212 Pave Grvl Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 5 6 1941 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 626.0 Unf 0.0 94.0 720.0 GasA ... Y SBrkr 854 444 0 1298 0.0 0.0 1 0 3 1 TA 6 Typ 2 Gd Detchd 1940.0 Unf 1.0 256.0 TA TA Y 84 0 0 0 0 0 NaN NaN NaN 0 9 2009 WD Normal NaN
1896 1897 50 RH 70.0 6300 Pave Pave Reg Lvl AllPub Corner Gtl SWISU Norm Norm 1Fam 1.5Fin 5 4 1938 1950 Gable CompShg MetalSd MetalSd BrkFace 88.0 TA TA PConc TA Fa No LwQ 832.0 Unf 0.0 0.0 832.0 GasA ... Y SBrkr 832 436 0 1268 0.0 0.0 1 1 3 1 TA 7 Typ 2 Gd Basment 1938.0 Unf 1.0 250.0 TA TA Y 0 0 55 0 0 0 NaN NaN NaN 0 7 2009 WD Abnorml NaN
1897 1898 70 RL 43.0 5707 Pave NaN Reg Bnk AllPub Inside Gtl SWISU Feedr Norm 1Fam 2Story 6 6 1935 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 583.0 583.0 GasA ... Y FuseF 647 595 0 1242 0.0 0.0 1 1 3 1 TA 6 Typ 1 Gd Detchd 1926.0 Unf 1.0 180.0 Fa TA Y 329 96 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1898 1899 30 RL 64.0 8574 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 6 8 1916 2000 Gable CompShg Stucco Stucco None 0.0 Gd TA BrkTil TA TA No Unf 0.0 Unf 0.0 816.0 816.0 GasA ... Y SBrkr 1232 0 0 1232 0.0 0.0 1 0 3 1 Gd 6 Typ 1 Gd Detchd 1916.0 Unf 2.0 440.0 TA TA Y 0 0 180 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1899 1900 70 RL 53.0 7155 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 7 8 1918 1990 Gambrel CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA Fa Mn Unf 0.0 Unf 0.0 600.0 600.0 GasA ... Y SBrkr 628 600 0 1228 0.0 0.0 1 0 3 1 TA 6 Typ 1 Gd Detchd 1918.0 Unf 1.0 215.0 Fa TA Y 0 113 0 0 195 0 NaN MnPrv NaN 0 5 2009 WD Normal NaN
1900 1901 50 RL 60.0 13680 Pave NaN Reg HLS AllPub Inside Mod Crawfor Norm Norm 1Fam 1.5Fin 5 6 1940 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No ALQ 728.0 Unf 0.0 112.0 840.0 GasA ... Y SBrkr 840 727 0 1567 1.0 0.0 1 1 2 1 TA 6 Min2 2 TA Detchd 1961.0 Unf 2.0 440.0 TA TA Y 0 21 150 0 0 0 NaN GdPrv NaN 0 2 2009 WD Normal NaN
1901 1902 20 RL 80.0 14680 Pave Grvl IR1 HLS AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 5 4 1960 1960 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 793.0 Unf 0.0 480.0 1273.0 GasA ... Y SBrkr 1273 0 0 1273 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1960.0 Unf 1.0 307.0 TA TA Y 483 0 0 0 115 0 NaN MnPrv NaN 0 6 2009 WD Normal NaN
1902 1903 90 RL NaN 8145 Pave NaN IR1 HLS AllPub Corner Gtl Crawfor Norm Norm Duplex 2.5Unf 7 6 1940 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No LwQ 246.0 Unf 0.0 674.0 920.0 GasA ... Y SBrkr 1240 1240 0 2480 0.0 0.0 2 1 5 2 TA 13 Typ 2 Gd Detchd 1940.0 Unf 2.0 400.0 TA TA Y 0 0 57 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1903 1904 20 RL 70.0 9100 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Feedr Norm 1Fam 1Story 5 6 1954 1954 Gable CompShg BrkFace BrkFace None 0.0 TA Gd BrkTil TA TA Mn Rec 154.0 ALQ 694.0 264.0 1112.0 GasA ... Y SBrkr 1112 0 0 1112 1.0 0.0 1 0 2 1 TA 6 Typ 1 Gd Attchd 1954.0 Unf 1.0 390.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 10 2009 WD Family NaN
1904 1905 20 RL 90.0 13339 Pave NaN IR1 Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 6 6 1960 1960 Gable CompShg HdBoard Plywood Stone 132.0 TA TA CBlock TA TA No LwQ 65.0 BLQ 875.0 621.0 1561.0 GasA ... Y SBrkr 1561 0 0 1561 1.0 0.0 2 0 3 1 TA 6 Typ 1 Gd Attchd 1960.0 Fin 2.0 463.0 TA TA Y 0 148 0 0 120 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1905 1906 50 RL 78.0 15600 Pave NaN Reg Bnk AllPub Inside Gtl Crawfor Norm Norm 1Fam 1.5Fin 5 7 1949 2005 Gable CompShg BrkComm Brk Cmn None 0.0 TA TA BrkTil TA TA No BLQ 312.0 Rec 507.0 248.0 1067.0 GasW ... N SBrkr 986 537 0 1523 1.0 0.0 2 0 3 1 Fa 7 Maj2 1 TA Attchd 1949.0 Unf 1.0 295.0 TA TA Y 0 0 81 0 0 0 NaN NaN NaN 0 10 2009 WD Normal NaN
1906 1907 20 RL 100.0 17500 Pave NaN Reg Bnk AllPub Corner Mod Crawfor PosA Norm 1Fam 1Story 6 5 1954 1954 Gable CompShg HdBoard HdBoard Stone 420.0 TA TA PConc TA TA Av LwQ 784.0 BLQ 435.0 91.0 1310.0 GasA ... Y SBrkr 1906 0 0 1906 1.0 0.0 1 1 3 1 TA 6 Typ 2 Gd Basment 1954.0 Unf 2.0 576.0 TA TA Y 0 201 0 0 0 0 NaN NaN NaN 0 1 2009 WD Normal NaN
1907 1908 160 RM 24.0 1733 Pave NaN Reg Lvl AllPub Inside Gtl Blueste Norm Norm Twnhs 2Story 6 6 1980 1980 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 516.0 516.0 GasA ... Y SBrkr 516 516 0 1032 0.0 0.0 1 0 2 1 TA 5 Typ 1 TA Detchd 1980.0 Unf 2.0 452.0 TA TA Y 279 0 0 0 0 0 NaN GdPrv NaN 0 5 2009 WD Normal NaN
1908 1909 160 RM 24.0 1488 Pave NaN Reg Lvl AllPub Inside Gtl Blueste Norm Norm TwnhsE 2Story 6 6 1980 1992 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock Gd TA Mn ALQ 471.0 Unf 0.0 90.0 561.0 GasA ... Y SBrkr 561 668 0 1229 1.0 0.0 1 1 2 1 Gd 5 Typ 1 TA Attchd 1980.0 Fin 2.0 462.0 TA TA Y 176 0 0 0 0 0 NaN GdPrv NaN 0 10 2009 WD Normal NaN
1909 1910 160 RM 24.0 1612 Pave NaN Reg Lvl AllPub Inside Gtl Blueste Norm Norm Twnhs 2Story 6 6 1980 1980 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 561.0 561.0 GasA ... Y SBrkr 561 668 0 1229 0.0 0.0 1 1 2 1 TA 5 Typ 1 TA Attchd 1980.0 Fin 2.0 462.0 TA TA Y 154 0 0 0 0 0 NaN MnPrv NaN 0 7 2009 WD Normal NaN
1910 1911 80 RL NaN 13607 Pave NaN IR1 Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam SLvl 6 6 1986 1986 Gable CompShg VinylSd VinylSd BrkFace 242.0 TA Gd CBlock TA TA No ALQ 454.0 Unf 0.0 118.0 572.0 GasA ... Y SBrkr 1182 800 0 1982 1.0 0.0 2 1 3 1 TA 6 Typ 1 TA BuiltIn 1986.0 Fin 2.0 501.0 TA TA Y 400 112 0 0 0 0 NaN NaN Shed 1500 4 2009 WD Normal NaN
1911 1912 20 RL NaN 17597 Pave NaN Reg Bnk AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 7 9 1971 2009 Hip CompShg BrkFace BrkFace None 0.0 Gd Gd CBlock Gd TA No GLQ 803.0 ALQ 419.0 581.0 1803.0 GasA ... Y SBrkr 2365 0 0 2365 1.0 0.0 2 0 3 1 Ex 7 Min1 2 Gd Attchd 1971.0 Fin 2.0 551.0 TA TA Y 200 144 0 0 0 0 NaN GdPrv NaN 0 7 2009 WD Normal NaN
1912 1913 70 RM 50.0 8660 Pave NaN Reg Bnk AllPub Inside Gtl IDOTRR Norm Norm 1Fam 2Story 5 6 1900 1993 Gambrel CompShg AsbShng AsbShng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 760.0 760.0 GasA ... N SBrkr 928 928 312 2168 0.0 0.0 2 0 5 1 Gd 11 Typ 0 NaN Detchd 1998.0 Unf 2.0 576.0 TA TA Y 467 160 78 0 0 0 NaN NaN NaN 0 12 2009 WD Normal NaN
1913 1914 30 C (all) 60.0 10200 Pave Grvl Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 4 6 1925 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 572.0 572.0 GasA ... N FuseP 572 0 0 572 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1940.0 Unf 1.0 200.0 TA TA N 0 0 72 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1914 1915 120 RM 44.0 3843 Pave NaN IR1 HLS AllPub Inside Mod Crawfor Norm Norm TwnhsE 1Story 8 5 2007 2008 Hip CompShg CemntBd CmentBd Stone 174.0 Ex TA PConc Ex TA Gd GLQ 1476.0 Unf 0.0 120.0 1596.0 GasA ... Y SBrkr 1648 0 0 1648 1.0 1.0 2 0 2 1 Ex 5 Typ 1 Gd Attchd 2007.0 Fin 2.0 482.0 TA TA Y 162 53 0 153 0 0 NaN NaN NaN 0 6 2009 New Partial NaN
1915 1916 30 NaN 109.0 21780 Grvl NaN Reg Lvl NaN Inside Gtl IDOTRR Norm Norm 1Fam 1Story 2 4 1910 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 Fa Fa CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N FuseA 810 0 0 810 0.0 0.0 1 0 1 1 TA 4 Min1 0 NaN Detchd 1975.0 Unf 1.0 280.0 TA TA N 119 24 0 0 0 0 NaN NaN NaN 0 3 2009 ConLD Normal NaN
1916 1917 60 RL 75.0 10125 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 2Story 8 5 2000 2001 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA No ALQ 445.0 BLQ 250.0 412.0 1107.0 GasA ... Y SBrkr 1040 1012 0 2052 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA BuiltIn 2000.0 Fin 3.0 642.0 TA TA Y 210 91 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1917 1918 85 RL 75.0 9750 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam SFoyer 6 6 1977 1977 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA Av ALQ 767.0 Unf 0.0 135.0 902.0 GasA ... Y SBrkr 926 0 0 926 1.0 0.0 1 0 2 1 TA 5 Typ 1 TA Attchd 1977.0 Unf 1.0 351.0 TA TA Y 319 0 0 0 0 0 NaN MnPrv NaN 0 4 2009 WD Normal NaN
1918 1919 85 RL 72.0 9360 Pave NaN Reg Bnk AllPub Inside Gtl Mitchel Norm Norm 1Fam SFoyer 6 7 1977 1977 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA Av GLQ 841.0 LwQ 116.0 0.0 957.0 GasA ... Y SBrkr 1287 0 0 1287 1.0 0.0 1 1 2 1 TA 5 Typ 2 Fa Attchd 1977.0 RFn 2.0 541.0 TA TA Y 302 39 0 0 120 0 NaN GdWo NaN 0 11 2009 WD Normal NaN
1919 1920 20 RL 82.0 11070 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 5 1991 1991 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No BLQ 55.0 Unf 0.0 1527.0 1582.0 GasA ... Y SBrkr 1595 0 0 1595 1.0 0.0 2 0 2 1 TA 5 Typ 0 NaN Detchd 1991.0 Unf 2.0 672.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2009 COD Abnorml NaN
1920 1921 20 RL 113.0 13438 Pave NaN IR1 HLS AllPub Corner Gtl Timber Norm Norm 1Fam 1Story 9 5 2008 2008 Gable CompShg CemntBd CmentBd Stone 246.0 Ex TA CBlock Ex TA Gd GLQ 1758.0 Unf 0.0 432.0 2190.0 GasA ... Y SBrkr 2036 0 0 2036 1.0 0.0 2 0 3 1 Ex 9 Typ 1 Ex Attchd 2008.0 Fin 3.0 780.0 TA TA Y 90 154 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1921 1922 20 RL 79.0 14463 Pave NaN IR1 HLS AllPub Corner Gtl Timber Norm Norm 1Fam 1Story 9 5 2008 2008 Gable CompShg CemntBd CmentBd BrkFace 406.0 Ex TA PConc Ex TA Gd GLQ 1115.0 Unf 0.0 526.0 1641.0 GasA ... Y SBrkr 1641 0 0 1641 1.0 0.0 2 0 3 1 Ex 7 Typ 0 NaN Attchd 2008.0 Fin 3.0 885.0 TA TA Y 0 95 0 0 0 0 NaN NaN NaN 0 1 2009 WD Normal NaN
1922 1923 60 RL NaN 9839 Pave NaN IR1 Lvl AllPub CulDSac Gtl Timber Norm Norm 1Fam 2Story 6 8 1980 2006 Gable CompShg MetalSd MetalSd None 0.0 TA Gd PConc Gd TA No ALQ 462.0 Unf 0.0 250.0 712.0 GasA ... Y SBrkr 1375 862 0 2237 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA BuiltIn 1980.0 Fin 2.0 440.0 TA TA Y 305 24 0 0 0 0 NaN NaN Shed 2500 2 2009 WD Normal NaN
1923 1924 80 RL 125.0 14419 Pave NaN IR1 Lvl AllPub Corner Gtl Timber Norm Norm 1Fam SLvl 7 5 1987 1989 Hip CompShg Plywood Plywood BrkFace 310.0 TA TA PConc Gd TA Gd GLQ 904.0 ALQ 624.0 117.0 1645.0 GasA ... Y SBrkr 1479 0 0 1479 2.0 0.0 2 1 3 1 Gd 7 Min1 1 Fa Attchd 1987.0 Fin 2.0 578.0 TA TA Y 224 238 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1924 1925 60 RL 75.0 9157 Pave NaN IR1 Lvl AllPub Corner Gtl Timber Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 912.0 912.0 GasA ... Y SBrkr 1072 942 0 2014 0.0 0.0 2 1 3 1 Gd 9 Typ 0 NaN Attchd 2003.0 Fin 2.0 486.0 TA TA Y 124 114 0 0 0 0 NaN NaN NaN 0 2 2009 WD Abnorml NaN
1925 1926 20 RL 85.0 12633 Pave NaN IR1 HLS AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 9 5 2007 2007 Hip CompShg CemntBd CmentBd Stone 290.0 Ex TA PConc Ex TA Gd GLQ 1640.0 Unf 0.0 338.0 1978.0 GasA ... Y SBrkr 1978 0 0 1978 1.0 0.0 2 0 2 1 Ex 7 Typ 1 Gd Attchd 2007.0 Fin 3.0 920.0 TA TA Y 308 52 0 0 0 0 NaN NaN NaN 0 5 2009 WD Normal NaN
1926 1927 20 RL 75.0 12518 Pave NaN IR1 Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 7 1968 1968 Gable CompShg HdBoard HdBoard BrkFace 182.0 TA TA CBlock TA TA No ALQ 532.0 Unf 0.0 476.0 1008.0 GasA ... Y SBrkr 1008 0 0 1008 0.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Attchd 1968.0 Unf 1.0 384.0 TA TA Y 144 0 0 0 0 0 NaN MnPrv NaN 0 4 2009 WD Normal NaN
1927 1928 20 RL 83.0 13383 Pave NaN IR1 Lvl AllPub Inside Mod Mitchel Norm Norm 1Fam 1Story 5 5 1969 2000 Hip CompShg HdBoard HdBoard BrkFace 176.0 TA TA CBlock TA TA No BLQ 594.0 Unf 0.0 594.0 1188.0 GasA ... Y SBrkr 1404 0 0 1404 0.0 0.0 2 0 3 1 TA 7 Typ 1 Po Attchd 1969.0 Unf 2.0 504.0 TA TA Y 0 16 0 0 0 0 NaN NaN NaN 0 3 2009 WD Normal NaN
1928 1929 85 RL 50.0 7689 Pave NaN IR1 Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam SFoyer 5 8 1972 1972 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Gd TA Av GLQ 720.0 BLQ 76.0 0.0 796.0 GasA ... Y SBrkr 796 0 0 796 0.0 1.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1998.0 Unf 1.0 336.0 TA TA Y 138 0 0 0 0 0 NaN MnPrv NaN 0 7 2009 WD Normal NaN
1929 1930 80 RL 62.0 7706 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam SLvl 6 5 1993 1996 Gable CompShg HdBoard HdBoard None 0.0 TA Gd CBlock Gd TA Av Rec 114.0 GLQ 270.0 0.0 384.0 GasA ... Y SBrkr 1091 0 0 1091 0.0 1.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1993.0 Fin 1.0 429.0 TA TA Y 280 0 0 0 0 0 NaN NaN Shed 700 8 2009 WD Normal NaN
1930 1931 85 RL 70.0 7669 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam SFoyer 5 6 1992 1993 Gable CompShg HdBoard Wd Shng None 0.0 TA TA PConc Gd TA Av GLQ 718.0 LwQ 110.0 0.0 828.0 GasA ... Y SBrkr 883 0 0 883 1.0 0.0 1 0 2 1 TA 5 Typ 1 Fa Detchd 1998.0 Unf 2.0 698.0 TA TA Y 100 32 0 0 0 0 NaN GdPrv NaN 0 6 2009 WD Normal NaN
1931 1932 60 RL 62.0 10429 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 2Story 5 5 1992 1992 Gable CompShg HdBoard Wd Shng None 0.0 TA TA PConc Gd TA No ALQ 330.0 Unf 0.0 294.0 624.0 GasA ... Y SBrkr 624 663 0 1287 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 2001.0 Unf 2.0 440.0 TA TA Y 150 0 0 0 0 0 NaN NaN NaN 0 7 2009 WD Normal NaN
1932 1933 60 RL 70.0 10457 Pave NaN IR1 Lvl AllPub Inside Mod Mitchel Norm Norm 1Fam 2Story 5 7 1969 1969 Gable CompShg VinylSd VinylSd BrkFace 178.0 Gd Ex CBlock TA TA Gd BLQ 496.0 LwQ 288.0 0.0 784.0 GasA ... Y SBrkr 784 848 0 1632 0.0 0.0 1 1 4 1 TA 7 Typ 1 TA Attchd 1969.0 RFn 2.0 898.0 TA TA Y 0 173 368 0 0 0 NaN MnPrv NaN 0 4 2009 WD Normal NaN
1933 1934 60 RL 72.0 8702 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1997 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc TA TA No BLQ 706.0 Unf 0.0 220.0 926.0 GasA ... Y SBrkr 926 678 0 1604 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1997.0 Fin 2.0 470.0 TA TA Y 0 36 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
1934 1935 60 RL 65.0 8139 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1995 1996 Gable CompShg VinylSd VinylSd BrkFace 119.0 TA TA PConc Gd TA No ALQ 476.0 Unf 0.0 204.0 680.0 GasA ... Y SBrkr 680 790 0 1470 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA BuiltIn 1995.0 Fin 2.0 420.0 TA TA Y 192 49 0 0 0 0 NaN NaN NaN 0 10 2008 WD Normal NaN
1935 1936 60 RL 59.0 9535 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1998 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Gd GLQ 851.0 Unf 0.0 75.0 926.0 GasA ... Y SBrkr 926 678 0 1604 0.0 0.0 2 1 3 1 TA 7 Typ 0 NaN Attchd 1998.0 Fin 2.0 472.0 TA TA Y 100 82 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
1936 1937 60 RL NaN 15038 Pave NaN IR2 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1996 1996 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No Rec 138.0 Unf 0.0 778.0 916.0 GasA ... Y SBrkr 916 720 0 1636 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1996.0 Fin 2.0 386.0 TA TA Y 168 84 0 0 0 0 NaN NaN NaN 0 11 2008 WD Normal NaN
1937 1938 20 RL 53.0 14137 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 1Story 5 5 1996 1997 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA No GLQ 450.0 Unf 0.0 898.0 1348.0 GasA ... Y SBrkr 1384 0 0 1384 1.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 1996.0 Unf 2.0 404.0 TA TA Y 0 39 0 0 0 0 NaN NaN NaN 0 11 2008 WD Normal NaN
1938 1939 120 RL 45.0 6264 Pave NaN IR1 Lvl AllPub Corner Gtl StoneBr Norm Norm 1Fam 1Story 8 5 1997 1997 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Ex TA Mn GLQ 656.0 Unf 0.0 1008.0 1664.0 GasA ... Y SBrkr 1682 0 0 1682 1.0 0.0 1 1 1 1 Gd 6 Min1 1 TA Attchd 1997.0 Fin 2.0 528.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
1939 1940 120 RL 39.0 5070 Pave NaN IR1 HLS AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 1992 1992 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA Mn Unf 0.0 Unf 0.0 1280.0 1280.0 GasA ... Y SBrkr 1280 0 0 1280 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 1992.0 RFn 2.0 506.0 TA TA Y 0 82 0 0 144 0 NaN NaN NaN 0 8 2008 WD Normal NaN
1940 1941 60 RL 73.0 11184 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1998 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 932.0 932.0 GasA ... Y SBrkr 932 701 0 1633 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1998.0 Fin 2.0 460.0 TA TA Y 0 39 0 0 0 0 NaN NaN NaN 0 4 2008 WD Family NaN
1941 1942 60 RL NaN 14067 Pave NaN Reg Lvl AllPub FR3 Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1991 1991 Gable CompShg HdBoard HdBoard BrkFace 194.0 TA TA PConc Gd TA No ALQ 504.0 Unf 0.0 332.0 836.0 GasA ... Y SBrkr 851 858 0 1709 1.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1991.0 Fin 2.0 416.0 TA TA Y 0 40 0 0 0 0 NaN GdPrv NaN 0 9 2008 WD Normal NaN
1942 1943 120 RL 65.0 5950 Pave NaN IR1 HLS AllPub Inside Mod StoneBr Norm Norm TwnhsE 1Story 8 5 1989 1989 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA Gd GLQ 319.0 Unf 0.0 1018.0 1337.0 GasA ... Y SBrkr 1337 0 0 1337 1.0 0.0 2 0 2 1 Gd 5 Typ 1 TA Attchd 1989.0 RFn 2.0 462.0 TA TA Y 0 73 154 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
1943 1944 60 RL 101.0 13543 Pave NaN IR1 HLS AllPub Corner Gtl StoneBr Norm Norm 1Fam 2Story 8 5 2005 2005 Gable CompShg VinylSd VinylSd Stone 130.0 Gd TA PConc Ex TA Gd GLQ 16.0 Unf 0.0 1152.0 1168.0 GasA ... Y SBrkr 1168 1332 0 2500 0.0 0.0 3 1 5 1 Ex 9 Typ 1 Gd BuiltIn 2005.0 Fin 3.0 683.0 TA TA Y 192 32 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
1944 1945 20 RL 53.0 15401 Pave NaN IR1 HLS AllPub CulDSac Gtl StoneBr Norm Norm 1Fam 1Story 9 5 2004 2004 Hip CompShg VinylSd VinylSd BrkFace 296.0 Ex TA PConc Ex TA Gd GLQ 1337.0 Unf 0.0 547.0 1884.0 GasA ... Y SBrkr 1884 0 0 1884 1.0 0.0 2 0 2 1 Ex 7 Typ 1 Gd Attchd 2004.0 Fin 3.0 670.0 TA TA Y 214 76 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal NaN
1945 1946 20 RL NaN 31220 Pave NaN IR1 Bnk NaN FR2 Gtl Gilbert Feedr Norm 1Fam 1Story 6 2 1952 1952 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1632.0 1632.0 GasA ... Y FuseA 1474 0 0 1474 0.0 0.0 1 0 3 1 TA 7 Min2 2 Gd Attchd 1952.0 Unf 2.0 495.0 TA TA Y 0 0 144 0 0 0 NaN NaN Shed 750 5 2008 WD Normal NaN
1946 1947 120 RL 60.0 8118 Pave NaN Reg HLS AllPub Inside Gtl StoneBr PosN PosN TwnhsE 1Story 9 5 2007 2007 Hip CompShg MetalSd MetalSd BrkFace 178.0 Ex TA PConc Ex TA Gd GLQ 1034.0 Unf 0.0 676.0 1710.0 GasA ... Y SBrkr 1710 0 0 1710 1.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2007.0 RFn 2.0 557.0 TA TA Y 156 48 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
1947 1948 20 RL NaN 47280 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 1Story 6 5 1950 1950 Hip CompShg AsbShng AsbShng BrkFace 44.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1488.0 1488.0 GasA ... Y SBrkr 1488 0 0 1488 0.0 0.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1950.0 RFn 2.0 738.0 TA TA Y 0 0 180 0 0 0 NaN NaN NaN 0 7 2008 WD Family NaN
1948 1949 20 RL 63.0 12680 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 7 6 1988 1988 Gable CompShg Plywood Wd Sdng BrkFace 102.0 Gd TA CBlock Gd Gd Mn GLQ 983.0 Unf 0.0 692.0 1675.0 GasA ... Y SBrkr 1688 0 0 1688 1.0 0.0 2 0 2 1 Ex 6 Typ 1 Ex Attchd 1988.0 RFn 2.0 528.0 TA TA Y 0 48 0 0 141 0 NaN NaN NaN 0 6 2008 WD Normal NaN
1949 1950 20 RL NaN 10825 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 7 7 1983 1983 Gable CompShg WdShing Plywood BrkFace 174.0 Gd TA CBlock Gd TA Mn GLQ 747.0 Unf 0.0 513.0 1260.0 GasA ... Y SBrkr 1260 0 0 1260 1.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Attchd 1983.0 Unf 2.0 598.0 TA TA Y 152 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
1950 1951 20 RL 56.0 18559 Pave NaN IR1 Lvl AllPub CulDSac Gtl NWAmes Norm Norm 1Fam 1Story 7 5 1978 1978 Hip CompShg Plywood Plywood BrkFace 383.0 Gd Gd CBlock Gd TA No GLQ 1206.0 Rec 186.0 656.0 2048.0 GasA ... Y SBrkr 2064 0 0 2064 1.0 0.0 2 0 3 1 Gd 7 Typ 2 Fa Attchd 1978.0 Fin 2.0 550.0 TA TA Y 200 0 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal NaN
1951 1952 20 RL 85.0 14450 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 7 5 1979 1979 Hip CompShg Plywood Plywood BrkFace 194.0 Gd TA CBlock Gd Fa No ALQ 864.0 LwQ 449.0 469.0 1782.0 GasA ... Y SBrkr 1782 0 0 1782 0.0 1.0 2 0 3 1 Gd 6 Typ 1 TA Attchd 1979.0 Fin 2.0 551.0 TA TA Y 467 0 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal NaN
1952 1953 20 RL 90.0 13068 Pave NaN Reg Lvl AllPub Corner Gtl NWAmes Norm Norm 1Fam 1Story 6 5 1976 1976 Hip CompShg HdBoard HdBoard BrkFace 621.0 TA TA PConc Gd TA No ALQ 890.0 Rec 48.0 273.0 1211.0 GasA ... Y SBrkr 1211 0 0 1211 1.0 0.0 2 0 3 1 Gd 6 Typ 1 Po Attchd 1976.0 Fin 2.0 461.0 TA TA Y 0 0 0 174 0 0 NaN MnPrv NaN 0 11 2008 WD Normal NaN
1953 1954 60 RL 80.0 10400 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 7 6 1980 1988 Gable CompShg HdBoard HdBoard BrkFace 280.0 TA TA CBlock Gd TA Mn Unf 0.0 Unf 0.0 738.0 738.0 GasA ... Y SBrkr 1277 767 0 2044 0.0 0.0 2 1 3 1 TA 7 Min1 1 TA Attchd 1980.0 Unf 2.0 489.0 TA TA Y 28 73 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal NaN
1954 1955 60 RL 75.0 9743 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 5 6 1969 1969 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA Fa No BLQ 280.0 Unf 0.0 440.0 720.0 GasA ... Y SBrkr 720 588 0 1308 0.0 0.0 1 1 3 1 TA 7 Typ 0 NaN Detchd 1969.0 Unf 2.0 484.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
1955 1956 60 RL NaN 12511 Pave NaN IR1 Lvl AllPub Corner Gtl NWAmes Norm Norm 1Fam 2Story 7 7 1978 1978 Mansard WdShake Plywood Plywood BrkFace 168.0 Gd TA PConc Gd TA No ALQ 988.0 Unf 0.0 432.0 1420.0 GasA ... Y SBrkr 1420 1420 0 2840 0.0 1.0 2 1 4 1 Gd 8 Min2 2 Gd Attchd 1978.0 Fin 4.0 1314.0 TA Gd Y 0 16 0 0 208 0 NaN MnPrv NaN 0 12 2008 WD Normal NaN
1956 1957 20 RL 80.0 10400 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 5 1976 1976 Gable CompShg HdBoard HdBoard BrkFace 120.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1444.0 1444.0 GasA ... Y SBrkr 1444 0 0 1444 0.0 0.0 2 0 2 1 TA 5 Typ 1 Gd Attchd 1976.0 Unf 2.0 473.0 TA TA Y 0 24 0 0 0 0 NaN GdWo NaN 0 4 2008 WD Normal NaN
1957 1958 60 RL NaN 14311 Pave NaN IR1 Lvl AllPub FR3 Gtl NWAmes Norm Norm 1Fam 2Story 8 5 1996 1996 Gable CompShg VinylSd VinylSd BrkFace 402.0 Gd TA PConc Gd TA No GLQ 1023.0 Unf 0.0 213.0 1236.0 GasA ... Y SBrkr 1236 1104 0 2340 1.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd Attchd 1996.0 RFn 3.0 787.0 TA TA Y 192 180 218 0 0 0 NaN GdPrv NaN 0 6 2008 WD Normal NaN
1958 1959 90 RL 60.0 9000 Pave NaN Reg Lvl AllPub FR2 Gtl NAmes Norm Norm Duplex 2Story 5 5 1974 1974 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock Gd TA Mn Unf 0.0 Unf 0.0 896.0 896.0 GasA ... Y SBrkr 896 896 0 1792 0.0 0.0 2 2 4 2 TA 8 Typ 0 NaN Detchd 1982.0 Unf 2.0 480.0 TA TA Y 0 45 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
1959 1960 20 RL 68.0 10295 Pave NaN Reg Lvl AllPub FR2 Gtl NAmes Norm Norm 1Fam 1Story 4 6 1969 1969 Gable CompShg HdBoard HdBoard BrkFace 72.0 TA TA CBlock Gd TA Mn Rec 252.0 Unf 0.0 684.0 936.0 GasA ... Y SBrkr 936 0 0 936 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1969.0 Unf 1.0 288.0 TA TA Y 16 0 0 0 0 0 NaN NaN NaN 0 9 2008 COD Normal NaN
1960 1961 20 RL 63.0 7560 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1971 1971 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock Gd TA No Rec 119.0 ALQ 613.0 132.0 864.0 GasA ... Y SBrkr 864 0 0 864 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1977.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
1961 1962 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 5 1973 1973 Gable CompShg HdBoard HdBoard BrkFace 359.0 TA TA CBlock TA TA No LwQ 458.0 Unf 0.0 25.0 483.0 GasA ... Y SBrkr 483 504 0 987 0.0 1.0 1 1 2 1 TA 5 Typ 0 NaN Detchd 1973.0 Unf 1.0 264.0 TA TA Y 52 0 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal NaN
1962 1963 160 RM 21.0 1890 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 6 1972 1972 Gable CompShg HdBoard HdBoard BrkFace 422.0 TA TA CBlock TA TA No LwQ 483.0 Unf 0.0 0.0 483.0 GasA ... Y SBrkr 483 504 0 987 0.0 0.0 1 1 2 1 TA 5 Typ 0 NaN Detchd 1975.0 Unf 1.0 352.0 TA TA Y 411 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
1963 1964 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 5 5 1972 1972 Gable CompShg HdBoard HdBoard BrkFace 356.0 TA TA CBlock TA TA No Rec 350.0 Unf 0.0 280.0 630.0 GasA ... Y SBrkr 630 672 0 1302 0.0 0.0 2 1 3 1 TA 6 Typ 0 NaN Detchd 1972.0 Unf 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal NaN
1964 1965 160 RL 24.0 2308 Pave NaN Reg Lvl AllPub FR2 Gtl NPkVill Norm Norm TwnhsE 2Story 6 6 1975 1975 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock Gd TA No ALQ 286.0 LwQ 294.0 275.0 855.0 GasA ... Y SBrkr 855 601 0 1456 0.0 0.0 2 1 4 1 TA 7 Typ 0 NaN Attchd 1975.0 RFn 2.0 460.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
1965 1966 120 RL 24.0 2529 Pave NaN Reg Lvl AllPub Inside Gtl NPkVill Norm Norm Twnhs 1Story 7 6 1977 1977 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock Gd TA No ALQ 378.0 Unf 0.0 677.0 1055.0 GasA ... Y SBrkr 1055 0 0 1055 0.0 0.0 2 0 2 1 TA 4 Typ 0 NaN Attchd 1977.0 Unf 2.0 440.0 TA TA Y 0 38 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal NaN
1966 1967 20 RL 98.0 12704 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2007 2007 Hip CompShg VinylSd VinylSd Stone 302.0 Gd TA PConc Ex TA No GLQ 1012.0 Unf 0.0 570.0 1582.0 GasA ... Y SBrkr 1582 0 0 1582 1.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2007.0 Fin 3.0 905.0 TA TA Y 209 95 0 0 0 0 NaN NaN NaN 0 1 2008 New Partial NaN
1967 1968 20 RL 105.0 13693 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2007 2007 Hip CompShg VinylSd VinylSd Stone 554.0 Gd TA PConc Ex TA Gd GLQ 1728.0 BLQ 495.0 195.0 2418.0 GasA ... Y SBrkr 2464 0 0 2464 1.0 0.0 2 1 4 1 Ex 9 Typ 1 Ex Attchd 2007.0 Fin 3.0 650.0 TA TA Y 358 78 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal NaN
1968 1969 20 RL 104.0 14418 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2007 2007 Hip CompShg VinylSd VinylSd BrkFace 480.0 Ex TA PConc Ex TA Gd GLQ 1375.0 Unf 0.0 575.0 1950.0 GasA ... Y SBrkr 1950 0 0 1950 1.0 0.0 2 0 2 1 Ex 7 Typ 1 Gd Attchd 2007.0 Fin 3.0 706.0 TA TA Y 156 207 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
1969 1970 60 RL 108.0 13418 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2006 2006 Hip CompShg VinylSd VinylSd BrkFace 270.0 Gd TA PConc Ex TA Gd GLQ 1420.0 Unf 0.0 430.0 1850.0 GasA ... Y SBrkr 1850 898 0 2748 1.0 0.0 2 1 4 1 Ex 9 Typ 1 Gd BuiltIn 2006.0 Fin 3.0 850.0 TA TA Y 212 182 0 0 0 0 NaN NaN NaN 0 10 2008 WD Abnorml NaN
1970 1971 60 RL 96.0 12539 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt PosN Norm 1Fam 2Story 10 5 2005 2006 Hip CompShg CemntBd CmentBd BrkFace 468.0 Ex TA PConc Ex TA Gd GLQ 1082.0 Unf 0.0 538.0 1620.0 GasA ... Y SBrkr 1632 1158 0 2790 1.0 0.0 2 1 4 1 Ex 10 Typ 1 Ex BuiltIn 2005.0 Fin 4.0 1150.0 TA TA Y 30 200 0 0 192 0 NaN NaN NaN 0 6 2008 WD Normal NaN
1971 1972 60 RL 102.0 12151 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2005 2005 Gable CompShg CemntBd CmentBd BrkFace 368.0 Gd TA PConc Ex TA Av GLQ 1249.0 Unf 0.0 165.0 1414.0 GasA ... Y SBrkr 1414 917 0 2331 1.0 0.0 2 1 3 1 Ex 9 Typ 1 Gd BuiltIn 2005.0 Fin 3.0 1003.0 TA TA Y 192 63 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal NaN
1972 1973 60 RL 74.0 8899 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2007 2007 Hip CompShg VinylSd VinylSd Stone 108.0 Ex TA PConc Gd TA Av GLQ 40.0 Unf 0.0 908.0 948.0 GasA ... Y SBrkr 948 1140 0 2088 0.0 0.0 2 1 4 1 Gd 10 Typ 1 Gd BuiltIn 2007.0 Fin 3.0 656.0 TA TA Y 100 24 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
1973 1974 60 RL 85.0 10574 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2004 2004 Gable CompShg VinylSd VinylSd Stone 126.0 Gd TA PConc Ex TA No GLQ 856.0 Unf 0.0 292.0 1148.0 GasA ... Y SBrkr 1170 1162 0 2332 1.0 0.0 2 1 4 1 Ex 9 Typ 1 Gd BuiltIn 2004.0 Fin 3.0 756.0 TA TA Y 224 142 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
1974 1975 20 RL 106.0 12720 Pave NaN Reg HLS AllPub Inside Mod NridgHt Norm Norm 1Fam 1Story 10 5 2003 2003 Hip CompShg MetalSd MetalSd Stone 680.0 Ex TA PConc Ex TA Gd GLQ 2257.0 Unf 0.0 278.0 2535.0 GasA ... Y SBrkr 2470 0 0 2470 2.0 0.0 1 1 1 1 Ex 7 Typ 2 Gd Attchd 2003.0 Fin 3.0 789.0 TA TA Y 154 65 0 0 216 144 Ex NaN NaN 0 2 2008 WD Normal NaN
1975 1976 20 RL 92.0 10845 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2003 2004 Gable CompShg VinylSd VinylSd BrkFace 504.0 Gd TA PConc Gd TA Mn GLQ 1149.0 Unf 0.0 454.0 1603.0 GasA ... Y SBrkr 1575 0 0 1575 1.0 0.0 2 0 2 1 Gd 7 Typ 1 TA Attchd 2003.0 Fin 3.0 732.0 TA TA Y 216 28 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
1976 1977 60 RL 130.0 16900 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2001 2002 Gable CompShg VinylSd VinylSd BrkFace 1110.0 Gd TA PConc Ex TA Mn GLQ 1075.0 Unf 0.0 404.0 1479.0 GasA ... Y SBrkr 1515 1134 0 2649 1.0 0.0 2 1 4 1 Gd 10 Typ 1 TA Attchd 2001.0 Fin 3.0 746.0 TA TA Y 0 60 0 0 0 0 NaN NaN NaN 0 1 2008 WD Normal NaN
1977 1978 60 RL 112.0 16451 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 221.0 Gd TA PConc Ex TA Gd Unf 0.0 Unf 0.0 1765.0 1765.0 GasA ... Y SBrkr 1804 886 0 2690 0.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd BuiltIn 2003.0 Fin 3.0 795.0 TA TA Y 268 58 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
1978 1979 120 RL 58.0 10110 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 9 5 2008 2008 Hip CompShg MetalSd MetalSd BrkFace 492.0 Ex TA PConc Gd TA No GLQ 372.0 Unf 0.0 1486.0 1858.0 GasA ... Y SBrkr 1866 0 0 1866 1.0 0.0 2 0 2 1 Ex 7 Typ 1 Gd Attchd 2008.0 Fin 3.0 870.0 TA TA Y 0 48 0 0 0 0 NaN NaN NaN 0 11 2008 New Partial NaN
1979 1980 120 RL 135.0 12304 Pave NaN IR3 Lvl AllPub Corner Gtl NridgHt Norm Norm TwnhsE 1Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd Stone 144.0 Gd TA PConc Gd TA No GLQ 20.0 Unf 0.0 1347.0 1367.0 GasA ... Y SBrkr 1367 0 0 1367 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2005.0 RFn 2.0 484.0 TA TA Y 0 33 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
1980 1981 120 RL 89.0 8232 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 9 5 2007 2008 Hip CompShg MetalSd MetalSd BrkFace 714.0 Ex TA PConc Ex TA No GLQ 1204.0 Unf 0.0 596.0 1800.0 GasA ... Y SBrkr 1800 0 0 1800 1.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2008.0 RFn 3.0 944.0 TA TA Y 210 0 0 0 0 0 NaN NaN NaN 0 6 2008 New Partial NaN
1981 1982 120 RL 48.0 6240 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 8 5 2006 2007 Hip CompShg MetalSd MetalSd BrkFace 176.0 Gd TA PConc Gd TA No GLQ 846.0 Unf 0.0 496.0 1342.0 GasA ... Y SBrkr 1342 0 0 1342 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2007.0 Fin 2.0 550.0 TA TA Y 0 35 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
1982 1983 120 RL 48.0 6240 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 8 5 2006 2007 Hip CompShg MetalSd MetalSd BrkFace 196.0 Gd TA PConc Gd TA No GLQ 24.0 Unf 0.0 1318.0 1342.0 GasA ... Y SBrkr 1342 0 0 1342 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2007.0 RFn 2.0 550.0 TA TA Y 0 35 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal NaN
1983 1984 160 RL 36.0 2448 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm Twnhs 2Story 7 5 2003 2004 Gable CompShg VinylSd Wd Shng Stone 106.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 764.0 764.0 GasA ... Y SBrkr 764 862 0 1626 0.0 0.0 2 1 2 1 Gd 6 Typ 0 NaN BuiltIn 2003.0 RFn 2.0 474.0 TA TA Y 0 27 0 0 0 0 NaN NaN NaN 0 10 2008 WD Normal NaN
1984 1985 120 RL NaN 3940 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 143.0 Gd TA PConc Gd TA Gd GLQ 1073.0 Unf 0.0 342.0 1415.0 GasA ... Y SBrkr 1455 0 0 1455 1.0 0.0 2 0 2 1 Gd 6 Typ 1 TA Attchd 2003.0 Fin 3.0 644.0 TA TA Y 156 20 0 0 144 0 NaN NaN NaN 0 8 2008 WD Normal NaN
1985 1986 120 RM NaN 3940 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2004 2004 Hip CompShg VinylSd VinylSd BrkFace 24.0 Gd TA PConc Gd TA No GLQ 1087.0 Unf 0.0 306.0 1393.0 GasA ... Y SBrkr 1576 0 0 1576 1.0 0.0 2 0 2 1 Gd 7 Typ 1 TA Attchd 2004.0 RFn 3.0 668.0 TA TA Y 143 20 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
1986 1987 20 RL 53.0 3710 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm 1Fam 1Story 7 5 2007 2008 Gable CompShg WdShing Wd Shng BrkFace 20.0 Gd TA PConc Gd TA Gd Unf 0.0 Unf 0.0 1146.0 1146.0 GasA ... Y SBrkr 1246 0 0 1246 0.0 0.0 2 0 2 1 Gd 5 Typ 1 Gd Attchd 2007.0 Fin 2.0 428.0 TA TA Y 100 24 0 0 0 0 NaN NaN NaN 0 3 2008 New Partial NaN
1987 1988 60 RL 80.0 9024 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 789.0 789.0 GasA ... Y SBrkr 813 702 0 1515 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2004.0 Fin 2.0 393.0 TA TA Y 0 75 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
1988 1989 60 RL NaN 8010 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2002 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 840.0 840.0 GasA ... Y SBrkr 840 880 0 1720 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd BuiltIn 2002.0 Fin 2.0 400.0 TA TA Y 138 48 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
1989 1990 60 RL NaN 8396 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 196.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 847.0 847.0 GasA ... Y SBrkr 847 1139 0 1986 0.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd BuiltIn 2003.0 Fin 2.0 434.0 TA TA Y 120 48 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
1990 1991 120 RL 55.0 7301 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 7 6 2007 2008 Gable CompShg VinylSd VinylSd Stone 176.0 Gd TA PConc Gd TA No GLQ 876.0 Unf 0.0 474.0 1350.0 GasA ... Y SBrkr 1358 0 0 1358 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2008.0 RFn 2.0 484.0 TA TA Y 192 26 0 0 0 0 NaN NaN NaN 0 11 2008 New Partial NaN
1991 1992 60 RL 71.0 8220 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2000 2001 Gable CompShg VinylSd VinylSd BrkFace 647.0 Gd TA PConc Gd TA Av GLQ 544.0 Unf 0.0 438.0 982.0 GasA ... Y SBrkr 1008 884 0 1892 0.0 0.0 2 1 3 1 TA 8 Typ 1 TA Attchd 2000.0 RFn 2.0 431.0 TA TA Y 108 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
1992 1993 60 RL NaN 7750 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert RRAn Norm 1Fam 2Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd NaN NaN Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 707.0 707.0 GasA ... Y SBrkr 707 707 0 1414 0.0 0.0 2 1 3 1 Gd 6 Typ 1 Gd Attchd 2002.0 Fin 2.0 403.0 TA TA Y 100 35 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
1993 1994 60 RL 41.0 12460 Pave NaN IR1 Lvl AllPub FR2 Gtl Gilbert RRAn Norm 1Fam 2Story 7 5 1999 2000 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 870.0 Unf 0.0 167.0 1037.0 GasA ... Y SBrkr 1037 1285 0 2322 0.0 0.0 2 1 4 1 TA 8 Typ 1 TA BuiltIn 1999.0 Fin 2.0 400.0 TA TA Y 144 44 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
1994 1995 60 RL 77.0 8390 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 1999 1999 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 831.0 831.0 GasA ... Y SBrkr 873 778 0 1651 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA BuiltIn 1999.0 Fin 2.0 450.0 TA TA Y 0 103 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
1995 1996 75 RL 84.0 9660 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2.5Unf 8 5 1997 1997 Hip CompShg HdBoard HdBoard BrkFace 1290.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1173.0 1173.0 GasA ... Y SBrkr 1182 1017 0 2199 0.0 0.0 2 1 3 1 Gd 9 Typ 1 TA Attchd 1997.0 Fin 2.0 516.0 TA TA Y 0 131 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal NaN
1996 1997 60 RL NaN 11000 Pave NaN Reg Lvl AllPub FR2 Gtl NoRidge Norm Norm 1Fam 2Story 9 5 2000 2000 Hip CompShg VinylSd VinylSd BrkFace 295.0 Gd TA PConc Ex TA Mn Unf 0.0 Unf 0.0 1519.0 1519.0 GasA ... Y SBrkr 1533 639 0 2172 0.0 0.0 2 1 4 1 Ex 8 Typ 1 TA BuiltIn 2000.0 RFn 3.0 687.0 TA TA Y 162 153 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
1997 1998 20 RL 136.0 11675 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 1Story 8 5 1998 1998 Gable CompShg VinylSd VinylSd BrkFace 495.0 Gd TA PConc Gd TA Av GLQ 1660.0 Unf 0.0 322.0 1982.0 GasA ... Y SBrkr 2006 0 0 2006 1.0 0.0 2 0 2 1 Gd 5 Typ 1 TA Attchd 1998.0 Fin 3.0 938.0 TA TA Y 144 33 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
1998 1999 60 RL 97.0 10990 Pave NaN IR1 Lvl AllPub CulDSac Gtl NoRidge Norm Norm 1Fam 2Story 7 5 1996 1997 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA No GLQ 851.0 Unf 0.0 213.0 1064.0 GasA ... Y SBrkr 1064 1061 0 2125 1.0 0.0 2 1 4 1 Gd 12 Typ 2 TA Attchd 1996.0 RFn 2.0 576.0 TA TA Y 168 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
1999 2000 60 RL NaN 11929 Pave NaN IR1 Lvl AllPub CulDSac Gtl NoRidge Norm Norm 1Fam 2Story 8 7 1995 1995 Gable CompShg VinylSd VinylSd BrkFace 466.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1242.0 1242.0 GasA ... Y SBrkr 1251 1250 0 2501 0.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1995.0 RFn 3.0 751.0 TA TA Y 192 87 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2000 2001 60 RL 91.0 10010 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 7 5 1993 1994 Hip WdShake VinylSd VinylSd BrkFace 320.0 Gd TA PConc Gd TA Av BLQ 228.0 GLQ 852.0 0.0 1080.0 GasA ... Y SBrkr 1108 1089 0 2197 1.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd Attchd 1993.0 Fin 3.0 783.0 TA TA Y 385 99 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2001 2002 20 RL 74.0 13253 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst RRAn Norm 1Fam 1Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd BrkFace 128.0 Gd TA PConc Ex TA No GLQ 1096.0 Unf 0.0 482.0 1578.0 GasA ... Y SBrkr 1578 0 0 1578 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 Unf 3.0 642.0 TA TA Y 0 26 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2002 2003 60 RL 73.0 9801 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 156.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1341.0 1341.0 GasA ... Y SBrkr 1341 520 0 1861 0.0 0.0 3 0 3 1 Gd 7 Typ 1 Gd BuiltIn 2007.0 RFn 3.0 851.0 TA TA Y 144 60 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2003 2004 60 RL 80.0 9428 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 2007 2008 Hip CompShg VinylSd VinylSd Stone 310.0 Gd TA PConc Gd TA Av GLQ 729.0 Unf 0.0 226.0 955.0 GasA ... Y SBrkr 955 919 0 1874 1.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2007.0 Fin 3.0 880.0 TA TA Y 168 108 0 0 0 0 NaN NaN NaN 0 2 2008 New Partial NaN
2004 2005 20 RL 87.0 10037 Pave NaN Reg Lvl AllPub Corner Gtl Somerst Feedr Norm 1Fam 1Story 8 5 2006 2007 Hip CompShg VinylSd VinylSd NaN NaN Gd TA PConc Ex TA No GLQ 666.0 Unf 0.0 794.0 1460.0 GasA ... Y SBrkr 1460 0 0 1460 0.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2006.0 Fin 2.0 480.0 TA TA Y 0 20 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal NaN
2005 2006 20 FV 72.0 8640 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2007 2008 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 24.0 Unf 0.0 1339.0 1363.0 GasA ... Y SBrkr 1372 0 0 1372 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2008.0 RFn 2.0 588.0 TA TA Y 192 113 0 0 0 0 NaN NaN NaN 0 7 2008 New Partial NaN
2006 2007 20 FV 85.0 10625 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd BrkFace 292.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1660.0 1660.0 GasA ... Y SBrkr 1660 0 0 1660 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2007.0 Fin 3.0 660.0 TA TA Y 133 120 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2007 2008 20 FV 62.0 7500 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2007 2008 Gable CompShg CemntBd CmentBd Stone 210.0 Gd TA PConc Gd TA No GLQ 902.0 Unf 0.0 316.0 1218.0 GasA ... Y SBrkr 1218 0 0 1218 1.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 2008.0 Fin 2.0 462.0 TA TA Y 168 168 0 0 0 0 NaN NaN NaN 0 4 2008 New Partial NaN
2008 2009 60 RL 68.0 10110 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 6 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Mn GLQ 80.0 ALQ 555.0 200.0 835.0 GasA ... Y SBrkr 835 861 0 1696 1.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2003.0 RFn 2.0 542.0 TA TA Y 143 66 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2009 2010 60 RL 67.0 12774 Pave NaN Reg Lvl AllPub FR2 Gtl SawyerW Norm Norm 1Fam 2Story 7 5 2003 2004 Gable CompShg VinylSd VinylSd BrkFace 95.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 835.0 835.0 GasA ... Y SBrkr 835 828 0 1663 0.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 2003.0 RFn 2.0 478.0 TA TA Y 168 68 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2010 2011 20 RL 63.0 13072 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW RRAe Norm 1Fam 1Story 6 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 126.0 TA TA PConc Gd Gd No GLQ 80.0 Unf 0.0 1095.0 1175.0 GasA ... Y SBrkr 1175 0 0 1175 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 90 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2011 2012 20 RL 81.0 9260 Pave NaN Reg Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam 1Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Mn Unf 0.0 Unf 0.0 1162.0 1162.0 GasA ... Y SBrkr 1162 0 0 1162 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2007.0 Fin 2.0 483.0 TA TA Y 0 32 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal NaN
2012 2013 60 RL 65.0 8453 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 6 5 1995 1995 Gable CompShg VinylSd VinylSd BrkFace 38.0 Gd TA PConc Gd TA No GLQ 362.0 Unf 0.0 392.0 754.0 GasA ... Y SBrkr 754 855 0 1609 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 1995.0 RFn 2.0 525.0 TA TA Y 0 70 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2013 2014 60 RL 50.0 8480 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 6 5 1993 1994 Gable CompShg HdBoard HdBoard BrkFace 120.0 Gd TA PConc Gd TA No GLQ 602.0 Unf 0.0 284.0 886.0 GasA ... Y SBrkr 886 794 0 1680 0.0 1.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1993.0 RFn 2.0 474.0 TA TA Y 144 96 0 0 0 0 NaN NaN NaN 0 10 2008 WD Normal NaN
2014 2015 60 RL 43.0 14565 Pave NaN IR2 Lvl AllPub CulDSac Gtl SawyerW Norm Norm 1Fam 2Story 7 5 1994 1995 Gable CompShg VinylSd VinylSd BrkFace 145.0 Gd TA PConc Gd TA Av GLQ 537.0 Unf 0.0 295.0 832.0 GasA ... Y SBrkr 832 825 0 1657 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 1994.0 RFn 2.0 483.0 TA TA Y 144 74 0 0 0 0 NaN NaN Shed 2000 11 2008 WD Normal NaN
2015 2016 60 RL 65.0 8450 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 6 5 2001 2001 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 472.0 Unf 0.0 355.0 827.0 GasA ... Y SBrkr 827 850 0 1677 1.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2001.0 RFn 2.0 627.0 TA TA Y 0 68 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal NaN
2016 2017 60 RL 75.0 8285 Pave NaN Reg Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam 2Story 7 5 1992 1992 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA No GLQ 397.0 Unf 0.0 439.0 836.0 GasA ... Y SBrkr 844 893 0 1737 0.0 1.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1992.0 Fin 2.0 506.0 TA TA Y 192 85 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2017 2018 20 RL 70.0 9100 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer RRAe Norm 1Fam 1Story 5 5 1963 1963 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA Gd No BLQ 53.0 ALQ 799.0 132.0 984.0 GasA ... Y SBrkr 984 0 0 984 1.0 0.0 1 0 3 1 TA 5 Typ 1 TA Attchd 1963.0 RFn 1.0 384.0 TA TA Y 145 56 0 0 0 0 NaN MnPrv Shed 400 8 2008 WD Normal NaN
2018 2019 20 RL 75.0 8100 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Feedr Norm 1Fam 1Story 5 8 1961 2007 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd CBlock TA TA No ALQ 764.0 Unf 0.0 100.0 864.0 GasA ... Y SBrkr 864 0 0 864 1.0 0.0 1 0 3 1 Gd 5 Typ 1 TA Detchd 1962.0 Unf 1.0 420.0 TA TA Y 132 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2019 2020 190 RL 65.0 8450 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer RRAe Norm 2fmCon 1Story 5 5 1968 1968 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA Fa Mn ALQ 890.0 Unf 0.0 0.0 890.0 GasA ... N SBrkr 890 0 0 890 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1970.0 Unf 1.0 308.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2020 2021 20 RL 60.0 6360 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1963 1963 Hip CompShg Wd Sdng HdBoard None 0.0 TA TA CBlock Gd Gd No ALQ 489.0 Unf 0.0 375.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1963.0 Unf 1.0 276.0 TA TA Y 0 0 0 0 0 0 NaN NaN Shed 650 1 2008 COD Abnorml NaN
2021 2022 20 RL 95.0 19508 Pave NaN Reg Lvl AllPub Inside Gtl Veenker Norm Norm 1Fam 1Story 6 5 1974 1974 Gable CompShg HdBoard ImStucc BrkFace 144.0 TA TA CBlock TA TA Av ALQ 800.0 Unf 0.0 630.0 1430.0 GasA ... Y SBrkr 1430 0 0 1430 0.0 1.0 2 0 3 1 TA 6 Typ 2 TA Attchd 1974.0 Unf 2.0 484.0 TA TA Y 117 108 165 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2022 2023 50 RL 70.0 10759 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Feedr Norm 1Fam 1.5Fin 5 4 1972 1972 Gable CompShg HdBoard HdBoard None 0.0 TA Gd CBlock Gd TA No LwQ 190.0 ALQ 811.0 0.0 1001.0 GasA ... Y SBrkr 1001 640 0 1641 0.0 0.0 2 0 4 1 TA 5 Typ 1 Gd Detchd 1972.0 Unf 2.0 490.0 TA TA Y 0 0 92 0 0 0 NaN GdPrv NaN 0 7 2008 WD Normal NaN
2023 2024 60 RL NaN 9205 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 6 5 1990 1991 Hip CompShg HdBoard HdBoard BrkFace 304.0 Gd TA PConc Gd TA No ALQ 704.0 Unf 0.0 226.0 930.0 GasA ... Y SBrkr 1364 1319 0 2683 1.0 0.0 2 1 4 1 Gd 9 Typ 2 Gd Attchd 1990.0 RFn 2.0 473.0 TA TA Y 237 251 0 0 196 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2024 2025 60 RL 105.0 11025 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 1.5Fin 9 5 1993 1994 Hip CompShg Wd Sdng Wd Sdng BrkFace 568.0 Gd TA PConc Gd TA Gd BLQ 520.0 Unf 0.0 1328.0 1848.0 GasA ... Y SBrkr 1827 959 0 2786 1.0 0.0 2 1 4 1 Gd 10 Typ 1 Ex Attchd 1993.0 Fin 2.0 636.0 TA TA Y 294 49 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2025 2026 120 FV 37.0 3435 Pave Pave IR1 Lvl AllPub Corner Gtl Somerst Norm Norm TwnhsE 1Story 7 5 2004 2005 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No GLQ 24.0 Unf 0.0 1211.0 1235.0 GasA ... Y SBrkr 1245 0 0 1245 0.0 0.0 2 0 1 1 Gd 5 Typ 0 NaN Attchd 2004.0 RFn 2.0 495.0 TA TA Y 0 100 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2026 2027 160 FV 30.0 3180 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 2Story 6 5 2005 2005 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No GLQ 390.0 Unf 0.0 210.0 600.0 GasA ... Y SBrkr 600 600 0 1200 1.0 0.0 2 1 2 1 Gd 5 Typ 0 NaN Detchd 2005.0 RFn 2.0 480.0 TA TA Y 0 166 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2027 2028 160 FV 30.0 3180 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 2Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 689.0 689.0 GasA ... Y SBrkr 703 689 0 1392 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Detchd 2007.0 Unf 2.0 540.0 TA TA Y 0 102 0 0 0 0 NaN NaN NaN 0 3 2008 WD Abnorml NaN
2028 2029 160 FV 24.0 2280 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 6 5 1999 1999 Gable CompShg MetalSd MetalSd Stone 216.0 TA TA PConc Gd TA No GLQ 550.0 Unf 0.0 194.0 744.0 GasA ... Y SBrkr 757 792 0 1549 1.0 0.0 2 1 3 1 TA 6 Typ 0 NaN Detchd 1999.0 Unf 2.0 440.0 TA TA Y 0 32 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2029 2030 120 FV NaN 4765 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 1Story 9 5 2000 2000 Hip CompShg MetalSd MetalSd BrkFace 260.0 Gd TA PConc Gd TA Av GLQ 1027.0 Unf 0.0 587.0 1614.0 GasA ... Y SBrkr 1638 0 0 1638 1.0 0.0 2 0 2 1 Ex 5 Typ 1 TA Attchd 2000.0 Fin 2.0 495.0 TA TA Y 230 68 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2030 2031 120 FV NaN 4538 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 1Story 9 5 2001 2001 Gable CompShg VinylSd VinylSd BrkFace 179.0 Gd TA PConc Ex TA Av GLQ 1004.0 Unf 0.0 306.0 1310.0 GasA ... Y SBrkr 1310 0 0 1310 1.0 0.0 1 1 1 1 Gd 5 Typ 1 TA Attchd 2001.0 RFn 2.0 545.0 TA TA Y 277 45 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2031 2032 120 FV 42.0 4385 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 1Story 9 5 2001 2001 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA Av GLQ 964.0 Unf 0.0 455.0 1419.0 GasA ... Y SBrkr 1419 0 0 1419 1.0 0.0 1 1 2 1 Ex 5 Typ 1 TA Attchd 2001.0 Fin 2.0 588.0 TA TA Y 155 58 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal NaN
2032 2033 120 FV 35.0 4109 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 1Story 9 5 1999 2000 Gable CompShg VinylSd VinylSd BrkFace 260.0 Gd TA PConc Gd TA Av GLQ 1141.0 Unf 0.0 416.0 1557.0 GasA ... Y SBrkr 1557 0 0 1557 1.0 0.0 2 0 2 1 Ex 5 Typ 1 TA Attchd 1999.0 RFn 2.0 484.0 TA TA Y 124 113 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2033 2034 160 FV 24.0 2160 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs SLvl 7 5 1999 2000 Gable CompShg VinylSd VinylSd BrkFace 216.0 Gd TA PConc Gd TA No GLQ 600.0 Unf 0.0 72.0 672.0 GasA ... Y SBrkr 684 720 0 1404 1.0 0.0 2 1 3 1 Gd 5 Typ 0 NaN Detchd 1999.0 Unf 2.0 462.0 TA TA Y 20 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2034 2035 60 FV 79.0 10646 Pave NaN IR1 Lvl AllPub Corner Gtl Somerst Norm Norm 1Fam 2Story 7 5 2001 2001 Gable CompShg VinylSd VinylSd BrkFace 513.0 TA TA PConc TA TA No GLQ 681.0 Unf 0.0 177.0 858.0 GasA ... Y SBrkr 872 917 0 1789 1.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 2001.0 Fin 2.0 546.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2035 2036 160 FV 24.0 2645 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 8 5 1999 1999 Gable CompShg MetalSd MetalSd BrkFace 466.0 Gd TA PConc Gd TA No GLQ 612.0 Unf 0.0 348.0 960.0 GasA ... Y SBrkr 962 624 0 1586 1.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Detchd 1999.0 Unf 2.0 480.0 TA TA Y 169 0 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal NaN
2036 2037 160 FV 24.0 2645 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 8 5 1999 2000 Gable CompShg MetalSd MetalSd BrkFace 456.0 Gd TA PConc Gd TA No GLQ 813.0 Unf 0.0 147.0 960.0 GasA ... Y SBrkr 962 645 0 1607 1.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Detchd 2000.0 Unf 2.0 480.0 TA TA Y 169 0 0 0 0 0 NaN NaN NaN 0 12 2008 ConLD Normal NaN
2037 2038 160 FV 36.0 3951 Pave Pave IR1 Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 2Story 10 5 1998 1999 Gable CompShg BrkFace MetalSd None 0.0 Ex TA PConc Gd TA Mn BLQ 128.0 GLQ 842.0 0.0 970.0 GasA ... Y SBrkr 1469 924 0 2393 1.0 0.0 2 1 2 1 Ex 7 Typ 1 TA Attchd 1998.0 Fin 2.0 846.0 TA TA Y 0 90 0 0 94 0 NaN NaN NaN 0 2 2008 WD Normal NaN
2038 2039 120 RL 22.0 11064 Pave NaN IR2 Lvl AllPub CulDSac Gtl Veenker Norm Norm TwnhsE 1Story 8 5 1995 1995 Hip CompShg BrkFace BrkFace None 0.0 Gd TA PConc Gd TA Gd LwQ 560.0 GLQ 670.0 0.0 1230.0 GasA ... Y SBrkr 1239 0 0 1239 1.0 0.0 1 1 1 1 Gd 4 Typ 1 Fa Attchd 1995.0 Fin 2.0 477.0 TA TA Y 172 24 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal NaN
2039 2040 60 RL NaN 24572 Pave NaN IR1 Lvl AllPub CulDSac Gtl Veenker Norm Norm 1Fam 2Story 9 3 1977 1977 Mansard CompShg Wd Sdng Wd Sdng BrkFace 1050.0 Gd Gd CBlock Gd TA No GLQ 410.0 Unf 0.0 584.0 994.0 GasA ... Y SBrkr 1599 1345 0 2944 0.0 0.0 2 2 3 1 Gd 9 Typ 1 Gd Attchd 1977.0 RFn 3.0 864.0 TA TA Y 140 70 16 0 0 0 NaN NaN NaN 0 6 2008 WD Family NaN
2040 2041 20 RL 103.0 16280 Pave NaN Reg Lvl AllPub Inside Gtl Veenker Norm Norm 1Fam 1Story 8 9 1976 2007 Gable CompShg VinylSd VinylSd None 0.0 Ex Ex CBlock Gd NaN Mn GLQ 1044.0 Rec 382.0 0.0 1426.0 GasA ... Y SBrkr 1671 0 0 1671 1.0 0.0 3 0 3 1 Ex 6 Typ 1 Gd Attchd 1976.0 RFn 2.0 550.0 TA TA Y 280 90 0 0 0 0 NaN GdWo NaN 0 5 2008 WD Normal NaN
2041 2042 60 FV NaN 7500 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd NaN NaN Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 952.0 952.0 GasA ... Y SBrkr 952 860 0 1812 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 2002.0 RFn 2.0 469.0 TA TA Y 144 112 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2042 2043 80 RL NaN 11104 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam SLvl 6 6 1969 1969 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA Av GLQ 828.0 Unf 0.0 599.0 1427.0 GasA ... Y SBrkr 1427 0 0 1427 0.0 1.0 2 0 4 1 TA 7 Typ 0 NaN Attchd 1969.0 RFn 2.0 516.0 TA TA Y 0 0 0 0 216 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2043 2044 20 RL 85.0 11050 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 5 1968 1968 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Rec 301.0 Unf 0.0 1439.0 1740.0 GasA ... Y SBrkr 1740 0 0 1740 0.0 0.0 1 1 4 1 TA 8 Typ 1 TA Attchd 1968.0 RFn 2.0 512.0 TA TA Y 25 0 0 0 192 0 NaN GdWo NaN 0 10 2008 WD Family NaN
2044 2045 20 RL NaN 15387 Pave NaN IR1 Lvl AllPub CulDSac Gtl NWAmes Norm Norm 1Fam 1Story 7 7 1967 1967 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No ALQ 603.0 BLQ 294.0 723.0 1620.0 GasA ... Y SBrkr 1620 0 0 1620 0.0 0.0 2 0 4 1 Gd 8 Typ 1 Gd Attchd 1967.0 Unf 2.0 578.0 TA TA Y 0 62 192 0 0 0 NaN NaN Shed 450 8 2008 WD Normal NaN
2045 2046 90 RL 75.0 9750 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes RRAn Norm Duplex 1Story 5 6 1965 1965 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1625.0 1625.0 GasA ... Y SBrkr 1625 0 0 1625 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Detchd 1965.0 Unf 2.0 484.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2008 ConLD Normal NaN
2046 2047 60 RL 73.0 8814 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam 2Story 5 6 1968 1968 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No LwQ 732.0 Unf 0.0 0.0 732.0 GasA ... Y SBrkr 732 732 0 1464 0.0 0.0 1 1 4 1 TA 7 Typ 0 NaN Attchd 1968.0 Unf 2.0 470.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2047 2048 20 RL 65.0 8125 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1965 2005 Hip CompShg HdBoard HdBoard None 0.0 Gd TA CBlock TA TA No ALQ 260.0 Rec 456.0 196.0 912.0 GasA ... Y SBrkr 925 0 0 925 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1978.0 Unf 2.0 576.0 TA TA Y 233 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2048 2049 90 RL 72.0 11072 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm Duplex 1Story 5 5 1965 1965 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1728.0 1728.0 GasA ... Y SBrkr 1728 0 0 1728 0.0 0.0 2 0 6 2 TA 10 Typ 0 NaN Detchd 1987.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2008 WD Normal NaN
2049 2050 60 RL NaN 13355 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 7 6 1971 1971 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd Gd No ALQ 583.0 Unf 0.0 242.0 825.0 GasA ... Y SBrkr 845 825 0 1670 0.0 0.0 1 1 4 1 TA 7 Typ 0 NaN Attchd 1971.0 Fin 2.0 464.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2050 2051 20 RL 74.0 7785 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1956 1956 Gable CompShg HdBoard HdBoard None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1014 0 0 1014 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Attchd 1956.0 RFn 1.0 267.0 TA TA Y 0 0 40 0 200 0 NaN GdWo NaN 0 3 2008 WD Normal NaN
2051 2052 20 RL 90.0 9900 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 5 1961 1961 Gable CompShg Plywood Plywood None 0.0 TA Gd CBlock TA TA No Unf 0.0 Unf 0.0 1114.0 1114.0 GasA ... Y SBrkr 1114 0 0 1114 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1961.0 RFn 2.0 451.0 TA TA Y 0 0 0 0 164 0 NaN NaN NaN 0 5 2008 COD Abnorml NaN
2052 2053 20 RL NaN 11332 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 7 1960 2000 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No BLQ 528.0 Unf 0.0 590.0 1118.0 GasA ... Y SBrkr 1118 0 0 1118 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Attchd 1960.0 RFn 1.0 264.0 TA TA Y 290 0 0 0 0 0 NaN MnPrv NaN 0 8 2008 WD Normal NaN
2053 2054 70 RL 50.0 4882 Pave NaN IR1 Bnk AllPub Inside Mod BrkSide RRAn Feedr 1Fam 2Story 4 7 1937 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No Rec 120.0 Unf 0.0 228.0 348.0 GasA ... Y SBrkr 453 453 0 906 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Basment 1937.0 Unf 1.0 231.0 Fa TA Y 0 0 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal NaN
2054 2055 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1960 1960 Gable CompShg MetalSd MetalSd BrkFace 203.0 Fa Fa CBlock TA TA No Rec 658.0 Unf 0.0 638.0 1296.0 GasA ... Y SBrkr 1496 0 0 1496 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1960.0 RFn 2.0 450.0 TA TA Y 0 22 0 0 0 0 NaN MnPrv NaN 0 2 2008 WD Normal NaN
2055 2056 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 8 1950 2006 Gable CompShg HdBoard HdBoard None 0.0 TA Gd CBlock TA TA No BLQ 32.0 Rec 308.0 232.0 572.0 GasA ... Y SBrkr 1337 0 0 1337 1.0 0.0 1 0 3 1 Gd 7 Typ 1 Gd Attchd 1950.0 RFn 1.0 264.0 TA TA Y 0 192 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal NaN
2056 2057 20 RL 63.0 7584 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Artery Norm 1Fam 1Story 5 5 1953 1953 Hip CompShg Wd Sdng Wd Sdng BrkFace 88.0 TA TA CBlock TA TA No LwQ 531.0 Unf 0.0 505.0 1036.0 GasA ... Y SBrkr 1036 0 0 1036 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1953.0 RFn 1.0 312.0 TA TA Y 120 24 0 0 0 0 NaN MnPrv NaN 0 6 2008 WD Normal NaN
2057 2058 60 RL 90.0 14670 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 2Story 6 7 1966 1999 Gable CompShg VinylSd VinylSd BrkFace 410.0 Gd Gd CBlock TA TA No BLQ 575.0 Unf 0.0 529.0 1104.0 GasA ... Y SBrkr 1104 884 0 1988 0.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd Attchd 1966.0 RFn 2.0 480.0 TA TA Y 0 230 0 0 0 0 NaN MnPrv NaN 0 8 2008 WD Normal NaN
2058 2059 20 RL 74.0 8856 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 4 1957 1957 Gable CompShg Wd Sdng Wd Sdng BrkFace 143.0 TA TA CBlock TA TA No ALQ 621.0 LwQ 52.0 503.0 1176.0 GasA ... Y SBrkr 1176 0 0 1176 1.0 0.0 1 0 3 1 TA 6 Typ 2 Gd Attchd 1957.0 RFn 1.0 292.0 TA TA Y 0 88 0 0 95 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2059 2060 20 RL 82.0 9840 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1959 1998 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No ALQ 1053.0 Unf 0.0 195.0 1248.0 GasA ... Y SBrkr 1440 0 0 1440 1.0 0.0 2 0 2 1 Gd 7 Typ 0 NaN Attchd 1959.0 RFn 1.0 480.0 TA TA Y 150 0 0 0 256 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2060 2061 20 RL 90.0 13200 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam 1Story 6 6 1958 1958 Gable CompShg Wd Sdng Wd Sdng BrkFace 187.0 TA TA CBlock TA TA No LwQ 958.0 Unf 0.0 437.0 1395.0 GasA ... Y SBrkr 1570 0 0 1570 1.0 0.0 1 0 3 1 TA 5 Typ 1 TA Attchd 1958.0 RFn 2.0 441.0 TA TA Y 490 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2061 2062 20 RL 75.0 10425 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1956 1958 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 774.0 Unf 0.0 330.0 1104.0 GasA ... Y SBrkr 1104 0 0 1104 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1956.0 RFn 1.0 384.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2062 2063 20 RL 60.0 11556 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1952 1952 Gable CompShg MetalSd MetalSd Stone 52.0 TA TA CBlock TA TA No Rec 148.0 Unf 0.0 572.0 720.0 GasA ... Y FuseA 882 0 0 882 1.0 0.0 1 0 2 1 Gd 4 Typ 0 NaN Attchd 1952.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 5 2008 WD Normal NaN
2063 2064 20 RL 102.0 9373 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 6 1953 1953 Gable CompShg MetalSd MetalSd BrkFace 84.0 TA TA CBlock TA TA No Rec 500.0 LwQ 196.0 456.0 1152.0 GasA ... Y SBrkr 1152 0 0 1152 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1971.0 Unf 2.0 636.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2064 2065 20 RL NaN 12774 Pave NaN Reg Lvl AllPub Inside Sev NAmes Norm Norm 1Fam 1Story 5 5 1953 1953 Hip CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No BLQ 624.0 LwQ 128.0 232.0 984.0 GasW ... N SBrkr 950 0 0 950 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1953.0 Unf 2.0 400.0 TA TA Y 0 32 0 0 0 0 NaN GdWo NaN 0 7 2008 WD Normal NaN
2065 2066 20 RL 95.0 14250 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1957 1957 Gable CompShg Plywood Plywood BrkFace 360.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 998.0 998.0 GasA ... Y SBrkr 1790 0 0 1790 0.0 0.0 2 0 3 1 TA 6 Typ 2 Gd Attchd 1957.0 Fin 2.0 540.0 TA TA Y 0 40 0 0 0 0 NaN NaN Shed 1500 9 2008 WD Normal NaN
2066 2067 20 RL 71.0 8838 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 3 1957 1982 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1764 0 0 1764 0.0 0.0 2 1 4 1 TA 7 Maj2 1 TA Attchd 1957.0 Fin 1.0 301.0 TA TA Y 0 72 0 0 0 0 NaN NaN NaN 0 10 2008 WD Normal NaN
2067 2068 90 RL 76.0 12436 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm Duplex 1Story 5 5 1957 1957 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1824.0 1824.0 GasA ... Y FuseA 1824 0 0 1824 0.0 0.0 2 0 5 2 TA 9 Typ 0 NaN Detchd 1958.0 Unf 2.0 484.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 1 2008 WD Normal NaN
2068 2069 20 RL 60.0 10122 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 4 6 1948 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N SBrkr 869 0 0 869 0.0 0.0 1 0 1 1 TA 3 Typ 0 NaN Detchd 1948.0 Unf 1.0 390.0 Fa TA N 0 0 66 0 0 0 NaN GdPrv NaN 0 8 2008 WD Normal NaN
2069 2070 50 RL 45.0 7506 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1.5Fin 5 8 1925 1950 Gable CompShg VinylSd VinylSd None 0.0 TA Gd PConc TA TA No Unf 0.0 Unf 0.0 747.0 747.0 GasA ... Y SBrkr 747 412 0 1159 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1932.0 Unf 1.0 288.0 Fa TA N 84 0 96 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2070 2071 30 RL 60.0 5400 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1Story 4 7 1940 2005 Gambrel CompShg VinylSd VinylSd None 0.0 Gd TA PConc TA TA No Unf 0.0 Unf 0.0 672.0 672.0 GasA ... Y SBrkr 672 0 0 672 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1997.0 Unf 1.0 308.0 TA TA N 88 108 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2071 2072 50 RL 60.0 10836 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 5 1922 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 892.0 892.0 GasA ... Y SBrkr 1254 182 0 1436 0.0 1.0 1 0 3 1 TA 7 Typ 1 Gd Detchd 1968.0 Unf 4.0 1488.0 Fa TA N 0 0 100 0 0 0 NaN GdWo NaN 0 6 2008 WD Normal NaN
2072 2073 20 RL 78.0 10180 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Feedr Norm 1Fam 1Story 5 6 1968 1968 Gable CompShg HdBoard Plywood None 0.0 TA TA CBlock TA TA No Rec 744.0 Unf 0.0 168.0 912.0 GasA ... Y SBrkr 1044 0 0 1044 0.0 1.0 1 1 3 1 TA 5 Typ 1 Fa Attchd 1990.0 Fin 2.0 372.0 TA TA Y 200 48 0 0 0 0 NaN GdWo Shed 450 6 2008 WD Normal NaN
2073 2074 20 RL 76.0 11355 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 7 7 1958 2001 Gable Tar&Grv HdBoard HdBoard BrkFace 125.0 TA TA CBlock TA TA No BLQ 637.0 Unf 0.0 675.0 1312.0 GasA ... Y SBrkr 1312 0 0 1312 0.0 0.0 1 1 3 1 TA 6 Typ 1 Gd Attchd 1958.0 RFn 2.0 495.0 TA TA Y 0 304 144 0 0 0 NaN MnPrv Othr 6500 4 2008 WD Normal NaN
2074 2075 20 RL NaN 12929 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1960 1993 Gable CompShg Wd Sdng Wd Sdng BrkFace 276.0 TA TA CBlock TA TA Gd GLQ 697.0 Unf 0.0 384.0 1081.0 GasA ... Y SBrkr 1081 0 0 1081 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN CarPort 1960.0 Unf 1.0 401.0 TA TA Y 36 82 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2075 2076 20 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1951 1951 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Fa TA No LwQ 432.0 Unf 0.0 444.0 876.0 GasA ... Y SBrkr 876 0 0 876 0.0 0.0 1 0 2 1 TA 5 Typ 1 TA Detchd 1972.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 2 2008 WD Abnorml NaN
2076 2077 20 RL 80.0 8000 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1959 1959 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA PConc TA TA No BLQ 476.0 Rec 488.0 292.0 1256.0 GasA ... Y FuseA 1256 0 0 1256 1.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN Attchd 1959.0 RFn 1.0 311.0 TA TA Y 0 240 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2077 2078 20 RL 80.0 8000 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1962 1962 Gable CompShg BrkFace MetalSd None 0.0 TA TA CBlock TA TA No BLQ 520.0 Rec 319.0 188.0 1027.0 GasA ... Y SBrkr 1027 0 0 1027 0.0 1.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1962.0 Unf 1.0 299.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2008 WD Normal NaN
2078 2079 50 RL 60.0 8064 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Artery Norm 1Fam 1.5Fin 6 6 1948 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No ALQ 315.0 Unf 0.0 453.0 768.0 GasA ... Y SBrkr 819 501 0 1320 0.0 0.0 2 0 3 1 TA 5 Typ 0 NaN Detchd 1994.0 Unf 2.0 576.0 TA TA Y 108 0 0 0 0 0 NaN GdWo NaN 0 9 2008 WD Normal NaN
2079 2080 45 RL 64.0 6390 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Feedr Norm 1Fam 1.5Unf 6 7 1954 1954 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 936.0 936.0 GasA ... Y FuseA 984 0 0 984 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1954.0 Unf 1.0 280.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 6 2008 WD Normal NaN
2080 2081 50 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Fin 6 5 1954 1954 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 673.0 Unf 0.0 181.0 854.0 GasA ... Y FuseA 854 424 0 1278 0.0 0.0 1 0 4 1 TA 6 Typ 0 NaN Attchd 1954.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN MnWw NaN 0 4 2008 WD Normal NaN
2081 2082 90 RL 113.0 8513 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Artery Norm Duplex 1Story 5 5 1961 1961 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA CBlock TA TA Av Unf 0.0 Unf 0.0 1800.0 1800.0 GasA ... N SBrkr 1800 0 0 1800 0.0 0.0 2 0 6 2 TA 10 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 0 0 0 0 NaN NaN NaN 0 11 2008 WD Abnorml NaN
2082 2083 50 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Fin 5 6 1955 1967 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA Mn GLQ 370.0 Unf 0.0 398.0 768.0 GasA ... Y SBrkr 1024 564 0 1588 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1955.0 Unf 2.0 480.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal NaN
2083 2084 20 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1954 1954 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 825.0 825.0 GasA ... Y FuseA 825 0 0 825 0.0 1.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1954.0 Unf 1.0 350.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2084 2085 20 RL 69.0 7590 Pave NaN Reg Lvl AllPub Inside Gtl NAmes PosN Norm 1Fam 1Story 5 5 1963 1963 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1117.0 1117.0 GasA ... Y SBrkr 1117 0 0 1117 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1963.0 Unf 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2008 COD Normal NaN
2085 2086 20 RM 56.0 9836 Pave Grvl Reg Bnk AllPub Inside Gtl OldTown Artery Norm 1Fam 1Story 6 5 2008 2008 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc TA TA No GLQ 96.0 Unf 0.0 96.0 192.0 GasA ... N SBrkr 1133 0 0 1133 1.0 0.0 1 0 3 1 TA 7 Typ 0 NaN Detchd 2008.0 Unf 1.0 308.0 TA TA Y 0 175 0 0 0 0 NaN NaN NaN 0 12 2008 WD Abnorml NaN
2086 2087 50 RM 57.0 9184 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1.5Fin 5 7 1948 2005 Gable CompShg WdShing Wd Shng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 780.0 780.0 GasA ... Y SBrkr 948 375 0 1323 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1948.0 Unf 2.0 400.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2087 2088 70 RM 80.0 4800 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 5 5 1910 2003 Gable CompShg AsbShng AsbShng None 0.0 TA TA BrkTil TA Fa No Unf 0.0 Unf 0.0 680.0 680.0 GasA ... N SBrkr 680 680 0 1360 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Attchd 1910.0 Unf 1.0 330.0 Fa TA Y 192 50 0 0 0 0 NaN NaN NaN 0 1 2008 WD Normal NaN
2088 2089 30 RM 60.0 4800 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1Story 5 4 1940 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Fa TA No Unf 0.0 Unf 0.0 672.0 672.0 GasA ... Y SBrkr 672 0 0 672 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1950.0 Unf 1.0 256.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 8 2008 WD Normal NaN
2089 2090 75 RM 60.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2.5Unf 6 7 1915 2005 Gable CompShg Wd Sdng Wd Sdng None 0.0 Gd TA BrkTil TA TA No Unf 0.0 Unf 0.0 728.0 728.0 GasA ... Y SBrkr 728 728 0 1456 0.0 0.0 1 1 4 1 Gd 7 Typ 0 NaN Detchd 1915.0 Unf 1.0 308.0 Fa Fa N 0 0 248 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2090 2091 190 RM 63.0 11426 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 2fmCon 1.5Fin 4 6 1910 1996 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA Stone TA TA No Unf 0.0 Unf 0.0 828.0 828.0 GasA ... Y FuseA 828 658 108 1594 0.0 0.0 2 0 3 2 TA 9 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 172 109 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2091 2092 50 RM 63.0 7628 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 4 6 1940 1985 Gable CompShg MetalSd MetalSd None 0.0 TA Gd BrkTil TA TA No Unf 0.0 Unf 0.0 801.0 801.0 GasA ... Y FuseA 1095 561 0 1656 0.0 0.0 2 0 2 1 TA 8 Mod 0 NaN Detchd 1958.0 Unf 2.0 440.0 TA TA Y 187 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2092 2093 50 RM 81.0 7308 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Artery Norm 1Fam 1.5Fin 5 5 1920 1950 Gable CompShg WdShing Wd Shng None 0.0 Fa Fa BrkTil TA TA No Rec 360.0 Unf 0.0 576.0 936.0 GasA ... N FuseA 960 780 0 1740 0.0 0.0 1 0 2 1 Ex 6 Typ 1 Gd Detchd 1920.0 Unf 1.0 225.0 Fa Fa N 0 0 236 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2093 2094 30 RM 60.0 5400 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 7 6 1920 2006 Gable CompShg Stucco Stucco None 0.0 Gd TA CBlock TA TA No Unf 0.0 Unf 0.0 931.0 931.0 GasA ... Y SBrkr 1027 0 0 1027 0.0 1.0 1 0 2 1 Gd 5 Typ 1 TA NaN NaN NaN 0.0 0.0 NaN NaN N 0 28 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal NaN
2094 2095 190 RM 60.0 10800 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 2fmCon 1.5Fin 6 6 1940 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No BLQ 590.0 Unf 0.0 294.0 884.0 GasA ... Y SBrkr 884 552 0 1436 0.0 0.0 2 0 3 2 TA 8 Typ 2 Gd Detchd 1940.0 Unf 2.0 828.0 TA TA Y 0 0 126 0 0 0 NaN NaN NaN 0 5 2008 Con Normal NaN
2095 2096 30 RM 60.0 6756 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 6 1910 1950 Mansard CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA Gd No Unf 0.0 Unf 0.0 481.0 481.0 GasA ... N FuseA 899 0 0 899 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1930.0 Unf 1.0 200.0 Fa TA P 0 0 96 0 0 0 NaN NaN NaN 0 9 2008 WD Normal NaN
2096 2097 50 RM 44.0 5914 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 9 1890 1996 Gable CompShg Wd Sdng HdBoard None 0.0 TA TA BrkTil Fa TA No Unf 0.0 Unf 0.0 684.0 684.0 GasA ... Y SBrkr 684 396 0 1080 0.0 0.0 1 0 3 1 Gd 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 165 30 0 0 0 NaN NaN NaN 0 9 2008 WD Normal NaN
2097 2098 50 RM 75.0 9000 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1.5Fin 5 6 1946 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 445.0 Unf 0.0 459.0 904.0 GasA ... Y FuseA 904 595 0 1499 0.0 0.0 1 0 3 1 TA 5 Typ 1 Po Detchd 1959.0 Unf 3.0 869.0 TA Gd Y 0 20 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2098 2099 20 RM 62.0 7311 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1Story 2 5 1946 1950 Gable CompShg VinylSd VinylSd None 0.0 TA Gd BrkTil TA TA No Unf 0.0 Unf 0.0 407.0 407.0 GasA ... N FuseA 407 0 0 407 0.0 0.0 1 0 1 1 TA 3 Typ 0 NaN Detchd 1949.0 Unf 1.0 297.0 Fa TA Y 76 0 120 0 0 0 NaN NaN NaN 0 3 2008 WD Abnorml NaN
2099 2100 20 RM 103.0 12205 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 3 1 1949 1992 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil Fa Fa No Unf 0.0 Unf 0.0 448.0 448.0 GasA ... Y SBrkr 1588 0 0 1588 0.0 0.0 2 0 5 1 TA 6 Maj2 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 0 0 0 0 NaN MnPrv NaN 0 12 2008 WD Abnorml NaN
2100 2101 190 RM 69.0 9142 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 2fmCon 2Story 5 5 1900 2006 Gable CompShg MetalSd MetalSd None 0.0 TA Fa BrkTil Fa TA No Unf 0.0 Unf 0.0 797.0 797.0 GasA ... N FuseA 830 797 0 1627 0.0 0.0 2 0 4 2 TA 10 Typ 0 NaN Detchd 1950.0 Unf 2.0 420.0 Fa Po N 192 0 60 0 0 0 NaN NaN NaN 0 2 2008 WD Normal NaN
2101 2102 75 RM 53.0 5350 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Artery Norm 1Fam 2Story 7 8 1920 1965 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA BrkTil TA TA No BLQ 116.0 Unf 0.0 508.0 624.0 GasA ... Y SBrkr 730 720 0 1450 0.0 0.0 1 0 3 1 TA 7 Typ 0 NaN Detchd 1935.0 Unf 1.0 288.0 TA TA Y 0 192 0 0 0 0 NaN MnPrv NaN 0 3 2008 WD Normal NaN
2102 2103 50 RM 69.0 9143 Pave Grvl Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1.5Fin 5 7 1900 2003 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 346.0 346.0 GasA ... Y SBrkr 709 308 0 1017 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1961.0 Unf 1.0 308.0 TA TA N 0 0 139 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2103 2104 190 RM 60.0 9600 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 2fmCon 2Story 5 5 1920 1960 Gable CompShg AsbShng AsbShng None 0.0 TA TA BrkTil TA TA No Rec 234.0 Unf 0.0 739.0 973.0 GasA ... Y FuseP 1377 973 0 2350 0.0 0.0 2 0 4 2 TA 10 Typ 0 NaN 2Types 1930.0 Unf 2.0 393.0 TA TA Y 0 0 219 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2104 2105 70 RM 60.0 6000 Pave Grvl Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 2Story 5 9 1905 2005 Gable CompShg MetalSd MetalSd None 0.0 Gd TA BrkTil Fa TA No Unf 0.0 Unf 0.0 572.0 572.0 GasA ... Y SBrkr 884 656 0 1540 0.0 0.0 1 1 3 1 Gd 7 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 240 77 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal NaN
2105 2106 70 RM 60.0 11340 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 2 1 1920 1950 Gable CompShg AsbShng AsbShng None 0.0 Fa Fa BrkTil Fa Fa No Unf 0.0 Unf 0.0 723.0 723.0 GasA ... N SBrkr 723 363 0 1086 0.0 0.0 1 0 2 1 TA 5 Maj1 0 NaN Detchd 1920.0 Unf 2.0 400.0 Fa Po N 0 24 144 0 0 0 NaN NaN NaN 0 11 2008 ConLD Normal NaN
2106 2107 70 RM 60.0 10800 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 7 7 1890 1999 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA BrkTil TA TA Mn Unf 0.0 Unf 0.0 1313.0 1313.0 GasW ... Y SBrkr 1313 1182 0 2495 0.0 0.0 2 0 5 1 TA 10 Typ 1 Gd Detchd 1950.0 Unf 2.0 342.0 TA Fa Y 0 299 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal NaN
2107 2108 20 RM 65.0 9750 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 6 1959 1959 Gable CompShg MetalSd MetalSd BrkFace 164.0 TA TA CBlock TA TA No Rec 200.0 Unf 0.0 784.0 984.0 GasA ... Y SBrkr 984 0 0 984 1.0 0.0 1 0 2 1 Fa 5 Typ 0 NaN Detchd 1959.0 Unf 1.0 308.0 TA TA N 0 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2108 2109 20 RM 52.0 8516 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 4 6 1958 2006 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 869.0 869.0 GasA ... Y SBrkr 1093 0 0 1093 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1959.0 Unf 1.0 308.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2109 2110 30 RL 55.0 7111 Pave NaN IR1 Bnk AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 5 7 1928 1983 Gable CompShg WdShing Wd Shng None 0.0 Gd Gd BrkTil TA TA No LwQ 406.0 BLQ 273.0 329.0 1008.0 GasA ... Y SBrkr 1143 0 0 1143 0.0 0.0 1 0 2 1 TA 5 Typ 1 Po Detchd 1992.0 Unf 1.0 288.0 TA TA Y 265 0 0 0 0 0 NaN GdPrv NaN 0 7 2008 WD Normal NaN
2110 2111 50 RM NaN 7425 Pave NaN IR1 Bnk AllPub Corner Gtl BrkSide RRAn Artery 1Fam 1.5Fin 7 7 1945 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA Fa No Unf 0.0 Unf 0.0 672.0 672.0 GasA ... Y SBrkr 1195 473 0 1668 0.0 0.0 1 1 3 1 Gd 8 Typ 0 NaN Attchd 1945.0 Unf 1.0 252.0 TA TA Y 210 0 0 0 0 0 NaN NaN NaN 0 8 2008 WD Abnorml NaN
2111 2112 50 RL NaN 7010 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 5 1935 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Rec 175.0 Unf 0.0 849.0 1024.0 GasA ... Y SBrkr 1144 594 0 1738 0.0 0.0 2 0 3 1 TA 6 Typ 1 Gd Detchd 1950.0 Unf 1.0 240.0 TA TA P 0 30 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2112 2113 50 RM 50.0 5000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Feedr Norm 1Fam 1.5Fin 5 7 1941 2006 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd CBlock TA TA No ALQ 600.0 Unf 0.0 72.0 672.0 GasA ... Y SBrkr 832 378 0 1210 0.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Detchd 1941.0 Unf 1.0 240.0 TA TA P 0 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2113 2114 70 RM 59.0 5870 Pave NaN Reg Lvl AllPub Corner Gtl BrkSide Feedr Feedr 1Fam 2Story 6 9 1900 2000 Gable CompShg HdBoard HdBoard None 0.0 TA Gd BrkTil TA TA No Unf 0.0 Unf 0.0 554.0 554.0 GasA ... Y SBrkr 736 554 0 1290 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1926.0 Unf 1.0 200.0 Fa TA Y 38 112 0 0 0 0 NaN MnPrv Shed 400 4 2008 WD Normal NaN
2114 2115 50 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 7 1940 1989 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No ALQ 521.0 Unf 0.0 460.0 981.0 GasA ... Y SBrkr 1014 658 0 1672 0.0 0.0 1 1 3 1 Gd 6 Typ 1 Gd Detchd 1940.0 Unf 1.0 240.0 TA TA Y 0 11 0 0 0 0 NaN GdPrv NaN 0 7 2008 WD Normal NaN
2115 2116 30 RM 50.0 6000 Pave NaN Reg HLS AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 5 7 1924 2003 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Fa BrkTil TA Fa No Unf 0.0 Unf 0.0 949.0 949.0 GasA ... Y SBrkr 949 0 0 949 0.0 0.0 1 0 2 1 TA 5 Typ 1 Fa Detchd 1924.0 Unf 2.0 370.0 TA TA Y 0 0 48 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2116 2117 50 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 7 1937 2000 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd BrkTil TA TA No Rec 201.0 LwQ 162.0 462.0 825.0 GasA ... Y SBrkr 825 672 0 1497 0.0 0.0 2 0 3 1 TA 5 Typ 0 NaN Detchd 2004.0 Unf 1.0 672.0 TA TA Y 272 0 0 0 0 0 NaN GdPrv NaN 0 5 2008 WD Normal NaN
2117 2118 50 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 5 1939 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No LwQ 264.0 Unf 0.0 475.0 739.0 GasA ... Y SBrkr 874 468 0 1342 0.0 0.0 2 0 2 2 TA 7 Typ 1 Gd Detchd 1939.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2118 2119 45 RM 50.0 5000 Pave NaN Reg Bnk AllPub Inside Mod BrkSide Norm Norm 1Fam 1.5Unf 6 7 1926 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 992.0 992.0 GasA ... Y SBrkr 1013 0 0 1013 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1926.0 Unf 1.0 160.0 Fa TA Y 0 0 101 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2119 2120 50 RM 60.0 5520 Pave NaN IR1 Lvl AllPub FR2 Gtl BrkSide Feedr Norm 1Fam 1.5Fin 5 7 1920 1997 Gable CompShg AsbShng AsbShng None 0.0 TA Gd BrkTil TA TA No ALQ 68.0 Unf 0.0 497.0 565.0 GasA ... Y SBrkr 565 651 0 1216 1.0 0.0 1 0 3 1 TA 6 Typ 1 Gd BuiltIn 1920.0 RFn 1.0 355.0 Fa TA Y 0 0 180 0 0 0 NaN MnPrv NaN 0 4 2008 WD Normal NaN
2120 2121 20 RM 99.0 5940 Pave NaN IR1 Lvl AllPub FR3 Gtl BrkSide Feedr Norm 1Fam 1Story 4 7 1946 1950 Gable CompShg MetalSd CBlock None 0.0 TA TA PConc NaN NaN NaN NaN NaN NaN NaN NaN NaN GasA ... Y FuseA 896 0 0 896 NaN NaN 1 0 2 1 TA 4 Typ 0 NaN Detchd 1946.0 Unf 1.0 280.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 4 2008 ConLD Abnorml NaN
2121 2122 50 RM 52.0 6240 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 4 7 1929 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No BLQ 80.0 Unf 0.0 624.0 704.0 GasA ... Y SBrkr 624 512 0 1136 0.0 1.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1990.0 Unf 1.0 336.0 TA TA Y 0 365 80 0 0 0 NaN NaN NaN 0 8 2008 WD Normal NaN
2122 2123 30 RM NaN 6120 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 5 6 1945 1995 Gable CompShg Plywood Plywood None 0.0 TA Gd CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N SBrkr 808 0 0 808 0.0 0.0 1 0 1 1 TA 6 Min2 0 NaN Attchd 1925.0 Unf 1.0 164.0 TA TA P 0 48 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2123 2124 50 RM 52.0 6240 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 7 5 1939 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA Mn Rec 300.0 LwQ 240.0 449.0 989.0 GasA ... Y SBrkr 1245 764 0 2009 0.0 0.0 2 0 4 1 TA 7 Min2 1 Gd Detchd 1939.0 Unf 2.0 400.0 TA TA Y 0 20 0 0 0 0 NaN MnPrv NaN 0 1 2008 WD Normal NaN
2124 2125 70 RM 51.0 6120 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 2Story 5 5 1923 1950 Gambrel CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No LwQ 203.0 Unf 0.0 897.0 1100.0 GasA ... Y SBrkr 1226 676 0 1902 0.0 0.0 2 0 4 1 TA 7 Typ 0 NaN Detchd 1960.0 Unf 2.0 576.0 TA TA Y 0 139 55 0 0 0 NaN NaN NaN 0 10 2008 WD Normal NaN
2125 2126 50 RL 60.0 9144 Pave Pave Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 4 1915 2004 Gable CompShg VinylSd VinylSd None 0.0 TA Gd BrkTil TA TA No Unf 0.0 Unf 0.0 810.0 810.0 GasA ... Y SBrkr 1170 546 0 1716 0.0 0.0 2 0 4 1 Gd 8 Typ 0 NaN Detchd 1970.0 Unf 2.0 672.0 TA TA Y 0 195 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal NaN
2126 2127 60 RM 57.0 8094 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 2fmCon 2.5Unf 6 8 1910 1983 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA Mn Rec 196.0 Unf 0.0 1046.0 1242.0 GasA ... Y SBrkr 1242 742 0 1984 0.0 0.0 2 0 5 1 TA 8 Typ 0 NaN Detchd NaN NaN 1.0 360.0 NaN NaN Y 64 0 180 0 0 0 NaN MnPrv Shed 1000 9 2008 WD Normal NaN
2127 2128 50 RM 63.0 4347 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 6 8 1910 1950 Gambrel CompShg MetalSd MetalSd None 0.0 Gd TA BrkTil Gd Gd No Unf 0.0 Unf 0.0 796.0 796.0 GasA ... Y SBrkr 825 784 0 1609 0.0 0.0 1 0 3 1 TA 7 Typ 0 NaN Detchd 1910.0 Unf 1.0 228.0 Fa Fa N 0 182 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2128 2129 30 RM NaN 6291 Grvl NaN IR1 Lvl AllPub Inside Gtl IDOTRR RRNe Norm 1Fam 1Story 6 6 1930 1950 Gable CompShg Stucco Wd Shng None 0.0 Gd Gd BrkTil TA TA No Unf 0.0 Unf 0.0 768.0 768.0 GasA ... Y SBrkr 768 0 0 768 0.0 0.0 1 0 1 1 TA 4 Typ 0 NaN Detchd 1930.0 Unf 2.0 440.0 TA TA N 0 0 84 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2129 2130 70 RM 60.0 10266 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 2Story 6 6 1952 1952 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 372.0 Unf 0.0 396.0 768.0 GasA ... Y FuseA 768 768 0 1536 0.0 0.0 1 1 4 1 TA 7 Typ 0 NaN Detchd 1952.0 Unf 1.0 308.0 TA TA Y 0 216 80 0 0 0 NaN NaN NaN 0 5 2008 COD Abnorml NaN
2130 2131 50 RM 60.0 6876 Pave NaN Reg Bnk AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 6 6 1938 1958 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 1272.0 1272.0 GasA ... Y SBrkr 1272 0 697 1969 0.0 0.0 2 0 4 1 TA 9 Min1 1 Gd Detchd 1938.0 Unf 2.0 400.0 TA TA Y 0 34 0 0 0 0 NaN NaN NaN 0 11 2008 COD Normal NaN
2131 2132 50 RM NaN 10320 Pave Grvl Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 5 6 1915 1978 Gable CompShg HdBoard HdBoard None 0.0 TA Fa BrkTil TA Fa No Unf 0.0 Unf 0.0 880.0 880.0 GasA ... Y SBrkr 880 428 0 1308 0.0 0.0 2 0 2 1 TA 6 Typ 0 NaN Detchd 1950.0 Unf 2.0 400.0 Fa Fa Y 0 0 117 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2132 2133 30 RM 60.0 7200 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Norm Norm 1Fam 1Story 6 7 1925 1992 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1040.0 1040.0 GasA ... Y SBrkr 1040 0 0 1040 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1993.0 Unf 2.0 320.0 TA TA Y 0 132 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2133 2134 50 RM 62.0 7006 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 6 6 1925 1950 Gable CompShg Stucco Stucco None 0.0 TA TA PConc TA TA No Rec 121.0 Unf 0.0 647.0 768.0 GasA ... Y SBrkr 788 448 0 1236 1.0 0.0 2 0 3 1 TA 6 Typ 1 Gd Detchd 1985.0 Unf 1.0 384.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 8 2008 WD Family NaN
2134 2135 30 RM 60.0 10320 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR RRNe Norm 1Fam 1Story 5 8 1912 1991 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Fa TA No Unf 0.0 Unf 0.0 451.0 451.0 GasA ... Y SBrkr 759 0 0 759 0.0 0.0 1 0 1 1 TA 5 Typ 0 NaN Detchd 1997.0 Unf 2.0 576.0 TA TA N 40 0 0 0 0 0 NaN NaN NaN 0 8 2008 ConLD Family NaN
2135 2136 190 RM 60.0 10320 Pave Grvl Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 2fmCon 2Story 3 3 1915 1950 Gable CompShg AsphShn AsphShn None 0.0 Fa Fa PConc TA Fa No Unf 0.0 Unf 0.0 536.0 536.0 GasA ... N FuseF 808 536 0 1344 0.0 0.0 2 0 3 2 TA 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 42 0 204 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2136 2137 20 RL 82.0 9488 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Feedr Norm 1Fam 1Story 5 6 1947 1993 Gable CompShg VinylSd VinylSd None 0.0 Gd TA CBlock TA TA No Unf 0.0 Unf 0.0 1046.0 1046.0 GasA ... N SBrkr 1054 0 0 1054 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1947.0 Unf 1.0 240.0 TA TA Y 0 60 122 0 0 0 NaN NaN NaN 0 9 2008 WD Abnorml NaN
2137 2138 85 RL NaN 11235 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Feedr Norm 1Fam SFoyer 5 6 1963 1963 Gable CompShg HdBoard Wd Sdng None 0.0 TA TA CBlock Gd TA Av ALQ 784.0 Unf 0.0 197.0 981.0 GasA ... Y SBrkr 1075 0 0 1075 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Detchd 1996.0 Unf 2.0 440.0 TA TA Y 64 0 0 0 64 0 NaN MnPrv NaN 0 5 2008 WD Abnorml NaN
2138 2139 80 RL 80.0 13014 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam SLvl 6 5 1978 1978 Gable CompShg HdBoard Plywood BrkFace 39.0 TA TA CBlock TA TA Av ALQ 528.0 Unf 0.0 480.0 1008.0 GasA ... Y SBrkr 1096 0 0 1096 1.0 0.0 1 0 3 1 TA 6 Typ 1 Fa Attchd 1978.0 Unf 2.0 484.0 TA TA Y 168 0 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal NaN
2139 2140 20 RL 68.0 10265 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 7 1967 2005 Gable CompShg HdBoard HdBoard None 0.0 TA Fa CBlock TA TA No ALQ 758.0 Unf 0.0 234.0 992.0 GasA ... Y SBrkr 992 0 0 992 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Attchd 1967.0 RFn 1.0 294.0 TA TA Y 204 0 0 0 0 0 NaN MnPrv Shed 600 7 2008 WD Normal NaN
2140 2141 85 RL NaN 7703 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer Norm Norm 1Fam SFoyer 6 8 1978 1978 Gable CompShg HdBoard HdBoard BrkCmn 40.0 TA TA CBlock Gd TA Gd ALQ 450.0 Unf 0.0 0.0 450.0 GasA ... Y SBrkr 1034 0 0 1034 0.0 1.0 1 0 3 1 TA 6 Typ 1 Po Basment 1978.0 Fin 2.0 504.0 TA TA Y 311 0 0 0 0 0 NaN GdWo NaN 0 5 2008 WD Normal NaN
2141 2142 20 RL NaN 9981 Pave NaN IR1 Lvl AllPub Corner Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1967 1967 Gable CompShg MetalSd MetalSd BrkFace 340.0 TA TA CBlock TA TA Mn BLQ 221.0 Unf 0.0 852.0 1073.0 GasA ... Y SBrkr 1073 0 0 1073 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1967.0 RFn 1.0 270.0 TA TA Y 0 90 0 0 0 0 NaN MnPrv NaN 0 3 2008 WD Normal NaN
2142 2143 85 RL NaN 7400 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer Norm Norm 1Fam SFoyer 5 5 1984 1984 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Av LwQ 104.0 ALQ 956.0 0.0 1060.0 GasA ... Y SBrkr 1126 0 0 1126 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1984.0 Unf 2.0 506.0 TA TA Y 178 0 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal NaN
2143 2144 190 RL 60.0 12900 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Feedr Norm 2fmCon 1Story 5 4 1920 1950 Gable CompShg BrkFace Stucco None 0.0 TA TA PConc TA Fa No BLQ 1300.0 Unf 0.0 0.0 1300.0 GasA ... Y SBrkr 1140 0 0 1140 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN CarPort 1920.0 Unf 2.0 400.0 TA TA Y 0 0 190 0 0 0 NaN NaN NaN 0 1 2008 WD Alloca NaN
2144 2145 20 RL 94.0 9239 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Feedr Norm 1Fam 1Story 5 8 1963 2003 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA TA No GLQ 634.0 Unf 0.0 326.0 960.0 GasA ... Y SBrkr 960 0 0 960 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Attchd 1963.0 Fin 1.0 300.0 TA TA Y 168 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2145 2146 20 RL 88.0 14175 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer PosA Norm 1Fam 1Story 6 8 1956 1956 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA Gd Gd GLQ 776.0 Unf 0.0 212.0 988.0 GasA ... Y FuseA 1188 0 0 1188 1.0 0.0 1 0 1 1 TA 4 Typ 1 TA Attchd 1956.0 Unf 2.0 621.0 TA TA Y 102 89 231 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2146 2147 190 RL NaN 10532 Pave NaN Reg Lvl AllPub Corner Gtl ClearCr Norm Norm 1Fam 1Story 5 3 1960 1960 Flat Tar&Grv Plywood Plywood Stone 275.0 TA TA CBlock TA TA Mn Rec 988.0 Unf 0.0 0.0 988.0 GasA ... Y SBrkr 1721 0 0 1721 1.0 0.0 2 0 3 1 TA 7 Mod 2 TA Basment 1960.0 Unf 2.0 626.0 TA TA Y 50 84 0 0 0 0 NaN NaN NaN 0 12 2008 WD Abnorml NaN
2147 2148 50 RL 63.0 8375 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Norm Norm 1Fam 1.5Fin 5 7 1941 1973 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No ALQ 336.0 Unf 0.0 240.0 576.0 GasA ... Y SBrkr 864 486 0 1350 1.0 0.0 1 1 2 1 Gd 6 Min1 0 NaN 2Types 1973.0 Unf 3.0 627.0 TA TA N 0 0 0 0 0 0 NaN MnPrv NaN 0 6 2008 WD Normal NaN
2148 2149 80 RL NaN 10200 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam SLvl 5 8 1970 1970 Hip CompShg HdBoard HdBoard None 0.0 TA Gd PConc Gd TA Av ALQ 704.0 Unf 0.0 160.0 864.0 GasA ... Y SBrkr 904 0 0 904 0.0 0.0 1 0 3 1 Gd 5 Typ 0 NaN 2Types 1979.0 Unf 3.0 912.0 TA TA Y 143 0 0 0 0 0 NaN MnPrv NaN 0 6 2008 WD Normal NaN
2149 2150 20 RL 82.0 20270 Pave NaN IR1 Lvl AllPub CulDSac Gtl ClearCr Norm Norm 1Fam 1Story 7 6 1979 1979 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA Gd GLQ 599.0 Unf 0.0 925.0 1524.0 GasA ... Y SBrkr 1524 0 0 1524 1.0 0.0 2 0 3 1 TA 7 Typ 2 Gd Attchd 1979.0 Fin 2.0 478.0 TA TA Y 140 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2150 2151 50 RL 50.0 5190 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 7 5 1948 1950 Gable CompShg BrkFace Plywood None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 570.0 570.0 GasA ... Y SBrkr 617 462 0 1079 0.0 0.0 1 0 2 1 TA 5 Typ 1 Gd Attchd 1948.0 Unf 1.0 249.0 TA TA Y 135 0 0 0 0 0 NaN NaN NaN 0 1 2008 WD Normal NaN
2151 2152 30 RL 85.0 19550 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 7 1940 2007 Flat Tar&Grv NaN NaN None 0.0 TA TA PConc TA TA Gd ALQ 1035.0 Unf 0.0 545.0 1580.0 GasA ... Y SBrkr 1518 0 0 1518 1.0 0.0 1 0 2 1 Fa 5 Typ 2 Gd NaN NaN NaN 0.0 0.0 NaN NaN Y 0 39 0 0 0 0 NaN NaN NaN 0 1 2008 WD Normal NaN
2152 2153 20 RL 68.0 9571 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 6 1956 1956 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Av Rec 870.0 Unf 0.0 639.0 1509.0 GasA ... Y FuseA 1509 0 0 1509 1.0 0.0 1 0 3 1 Gd 6 Typ 1 TA Attchd 1956.0 Unf 1.0 322.0 TA TA Y 158 0 0 0 576 0 NaN MnPrv NaN 0 7 2008 WD Normal NaN
2153 2154 90 RL 50.0 9350 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm Duplex SFoyer 5 5 1975 1975 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA Av GLQ 864.0 Unf 0.0 0.0 864.0 GasA ... N SBrkr 864 0 0 864 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2154 2155 60 RL 50.0 9360 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 2Story 6 8 1962 2001 Gable CompShg VinylSd VinylSd BrkCmn 216.0 Gd TA CBlock TA TA No Rec 324.0 Unf 0.0 297.0 621.0 GasA ... Y SBrkr 621 648 0 1269 0.0 0.0 1 1 3 1 TA 7 Typ 0 NaN Detchd 1962.0 Unf 1.0 280.0 TA TA Y 0 236 0 0 0 0 NaN GdWo NaN 0 11 2008 WD Normal NaN
2155 2156 60 RL NaN 9771 Pave NaN IR3 Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam 2Story 6 5 1995 2002 Gable CompShg HdBoard HdBoard BrkFace 190.0 Gd TA PConc Gd TA No LwQ 779.0 Unf 0.0 298.0 1077.0 GasA ... Y SBrkr 1093 1721 0 2814 0.0 1.0 2 1 4 1 Gd 9 Typ 1 TA BuiltIn 1995.0 Fin 2.0 614.0 TA TA Y 48 32 0 0 216 0 NaN GdPrv NaN 0 6 2008 WD Normal NaN
2156 2157 20 RL 80.0 9938 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 7 5 1994 1994 Gable CompShg HdBoard HdBoard BrkFace 251.0 Gd TA PConc Gd TA No GLQ 1271.0 Unf 0.0 331.0 1602.0 GasA ... Y SBrkr 1626 0 0 1626 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1994.0 RFn 2.0 534.0 TA TA Y 424 40 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2157 2158 60 RL NaN 14171 Pave NaN IR2 Lvl AllPub CulDSac Gtl SawyerW Norm Norm 1Fam 2Story 7 5 1993 1994 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 355.0 Unf 0.0 457.0 812.0 GasA ... Y SBrkr 1101 1099 0 2200 0.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1993.0 RFn 2.0 453.0 TA TA Y 168 98 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal NaN
2158 2159 80 RL 85.0 10541 Pave NaN IR1 Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam SLvl 7 5 1996 1996 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 672.0 672.0 GasA ... Y SBrkr 1302 735 0 2037 0.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1996.0 Fin 2.0 472.0 TA TA Y 100 33 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal NaN
2159 2160 60 RL 65.0 10616 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 628.0 628.0 GasA ... Y SBrkr 628 728 0 1356 0.0 0.0 2 1 3 1 Gd 6 Typ 1 Gd BuiltIn 2007.0 Fin 2.0 484.0 TA TA Y 100 24 0 0 0 0 NaN NaN NaN 0 3 2008 New Partial NaN
2160 2161 20 RL 65.0 9345 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 156.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1615.0 1615.0 GasA ... Y SBrkr 1615 0 0 1615 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2007.0 RFn 3.0 864.0 TA TA Y 168 30 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2161 2162 20 RL 91.0 11778 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 9 5 2008 2008 Hip CompShg VinylSd VinylSd Stone 554.0 Gd TA PConc Gd TA Gd GLQ 2085.0 Unf 0.0 186.0 2271.0 GasA ... Y SBrkr 2276 0 0 2276 1.0 0.0 2 0 3 1 Ex 7 Typ 2 Gd Attchd 2008.0 RFn 3.0 1348.0 Gd TA Y 0 0 70 0 255 0 NaN NaN NaN 0 6 2008 WD Abnorml NaN
2162 2163 20 RL 91.0 11778 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr PosN Norm 1Fam 1Story 9 5 2008 2008 Hip CompShg VinylSd VinylSd Stone 402.0 Ex TA PConc Ex TA Av GLQ 1153.0 Unf 0.0 598.0 1751.0 GasA ... Y SBrkr 1766 0 0 1766 1.0 0.0 2 1 3 1 Ex 8 Typ 2 Gd Attchd 2008.0 Fin 3.0 874.0 TA TA Y 216 36 0 0 0 0 NaN NaN NaN 0 12 2008 New Partial NaN
2163 2164 80 RL NaN 11454 Pave NaN IR2 Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam SLvl 8 5 1995 1995 Gable CompShg VinylSd VinylSd BrkFace 302.0 Gd TA PConc Gd TA Gd GLQ 770.0 Unf 0.0 631.0 1401.0 GasA ... Y SBrkr 1511 0 0 1511 1.0 0.0 2 0 3 1 Gd 6 Typ 1 Fa Attchd 1995.0 Fin 3.0 811.0 TA TA Y 168 42 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal NaN
2164 2165 20 RL NaN 11500 Pave NaN IR1 Bnk AllPub CulDSac Gtl ClearCr Norm Norm 1Fam 1Story 6 6 1966 1966 Flat Tar&Grv Plywood Plywood None 0.0 TA TA CBlock Gd Gd Gd LwQ 262.0 ALQ 723.0 197.0 1182.0 GasA ... Y SBrkr 1643 0 0 1643 1.0 0.0 2 0 2 1 TA 6 Typ 1 Gd Attchd 1966.0 Unf 2.0 438.0 TA TA Y 339 0 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal NaN
2165 2166 20 RL 65.0 9750 Pave NaN Reg Low AllPub Inside Mod CollgCr Norm Norm 1Fam 1Story 5 7 1994 1994 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No GLQ 722.0 Unf 0.0 268.0 990.0 GasA ... Y SBrkr 990 0 0 990 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1997.0 Unf 2.0 528.0 TA TA Y 168 0 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal NaN
2166 2167 20 RL NaN 8696 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 1997 1998 Gable CompShg VinylSd VinylSd BrkFace 150.0 TA TA PConc Gd TA Gd GLQ 1308.0 Unf 0.0 110.0 1418.0 GasA ... Y SBrkr 1418 0 0 1418 1.0 0.0 2 0 3 1 Gd 5 Typ 1 TA Attchd 1997.0 RFn 2.0 558.0 TA TA Y 208 110 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2167 2168 60 RL NaN 13142 Pave NaN IR1 Lvl AllPub Corner Gtl CollgCr PosN Norm 1Fam 2Story 6 5 1997 1997 Gable CompShg VinylSd VinylSd BrkFace 128.0 TA TA PConc Gd TA No GLQ 688.0 Unf 0.0 176.0 864.0 GasA ... Y SBrkr 872 899 0 1771 1.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 1997.0 RFn 2.0 600.0 TA TA Y 0 96 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2168 2169 60 RL 68.0 8998 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2000 2000 Gable CompShg VinylSd VinylSd BrkFace 120.0 Gd TA PConc Gd TA Mn GLQ 527.0 Unf 0.0 255.0 782.0 GasA ... Y SBrkr 782 870 0 1652 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2000.0 RFn 2.0 532.0 TA TA Y 0 70 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2169 2170 60 RL 75.0 12192 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2000 2001 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 663.0 Unf 0.0 265.0 928.0 GasA ... Y SBrkr 928 895 0 1823 1.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2000.0 RFn 2.0 626.0 TA TA Y 192 36 0 0 0 0 NaN NaN Shed 4500 5 2008 WD Normal NaN
2170 2171 20 RL NaN 12250 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 6 1978 1978 Gable CompShg HdBoard HdBoard BrkFace 180.0 TA TA CBlock Gd TA Mn ALQ 781.0 Unf 0.0 83.0 864.0 GasA ... Y SBrkr 1174 0 0 1174 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1978.0 Unf 2.0 528.0 TA TA Y 211 0 280 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2171 2172 20 RL NaN 9216 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 6 1975 1975 Gable CompShg HdBoard HdBoard BrkFace 176.0 TA TA CBlock TA TA Av ALQ 294.0 Unf 0.0 782.0 1076.0 GasA ... Y SBrkr 1076 0 0 1076 0.0 0.0 1 1 3 1 TA 5 Typ 1 Fa Detchd 1985.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 9 2008 WD Abnorml NaN
2172 2173 20 RL 40.0 14330 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 1Story 5 6 1975 2001 Gable CompShg Plywood Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 88.0 ALQ 596.0 180.0 864.0 GasA ... Y SBrkr 1558 0 0 1558 1.0 0.0 2 0 2 1 TA 5 Min2 0 NaN Attchd 1975.0 Fin 2.0 440.0 TA TA Y 140 0 239 0 227 0 NaN NaN NaN 0 8 2008 WD Normal NaN
2173 2174 60 RL NaN 10400 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2001 2001 Gable CompShg VinylSd VinylSd BrkFace 227.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1257.0 1257.0 GasA ... Y SBrkr 1290 871 0 2161 0.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 2001.0 RFn 2.0 570.0 TA TA Y 0 84 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2174 2175 60 RL NaN 9720 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 2Story 9 5 2001 2002 Gable CompShg VinylSd VinylSd BrkFace 134.0 Gd TA PConc Gd TA Mn GLQ 1194.0 Unf 0.0 163.0 1357.0 GasA ... Y SBrkr 1366 581 0 1947 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA BuiltIn 2001.0 Fin 3.0 725.0 TA TA Y 168 116 0 0 0 0 NaN NaN NaN 0 1 2008 WD Normal NaN
2175 2176 20 RL NaN 14860 Pave NaN IR2 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2002 2003 Hip CompShg VinylSd VinylSd BrkFace 240.0 Gd TA PConc Ex TA Gd GLQ 1538.0 Unf 0.0 240.0 1778.0 GasA ... Y SBrkr 1786 0 0 1786 1.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2002.0 RFn 3.0 715.0 TA TA Y 182 35 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2176 2177 60 RL 41.0 10905 Pave NaN IR2 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1129.0 1129.0 GasA ... Y SBrkr 1129 1198 0 2327 0.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd BuiltIn 2003.0 RFn 2.0 596.0 TA TA Y 0 57 0 0 0 0 NaN NaN NaN 0 8 2008 WD Normal NaN
2177 2178 60 RL 96.0 11690 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 8 5 1999 2000 Gable CompShg VinylSd VinylSd BrkFace 192.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 850.0 850.0 GasA ... Y SBrkr 886 878 0 1764 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1999.0 Unf 2.0 560.0 TA TA Y 120 29 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2178 2179 120 RM NaN 4426 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm TwnhsE 1Story 6 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 205.0 Gd TA PConc Gd TA Mn GLQ 662.0 Unf 0.0 186.0 848.0 GasA ... Y SBrkr 848 0 0 848 1.0 0.0 1 0 1 1 Gd 3 Typ 0 NaN Attchd 2004.0 RFn 2.0 420.0 TA TA Y 140 0 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal NaN
2179 2180 90 RM 83.0 10126 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm Duplex SFoyer 6 5 1997 1998 Gable CompShg VinylSd VinylSd None 0.0 TA Gd PConc Gd TA Gd GLQ 1593.0 LwQ 162.0 83.0 1838.0 GasA ... Y SBrkr 1838 0 0 1838 2.0 0.0 2 0 2 2 TA 8 Typ 0 NaN Attchd 1998.0 Unf 3.0 721.0 TA TA Y 160 67 0 0 0 0 NaN NaN NaN 0 7 2008 WD Abnorml NaN
2180 2181 20 RL 75.0 9750 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd Stone 50.0 Gd TA PConc Gd TA Mn GLQ 24.0 Unf 0.0 1421.0 1445.0 GasA ... Y SBrkr 1445 0 0 1445 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2004.0 Unf 2.0 470.0 TA TA Y 0 35 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2181 2182 20 RL 85.0 11058 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 7 6 2007 2007 Gable CompShg VinylSd VinylSd Stone 212.0 Gd TA PConc Gd TA No GLQ 56.0 Unf 0.0 1508.0 1564.0 GasA ... Y SBrkr 1564 0 0 1564 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2007.0 RFn 3.0 814.0 TA TA Y 0 24 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal NaN
2182 2183 20 RL 74.0 9627 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 24.0 Unf 0.0 1327.0 1351.0 GasA ... Y SBrkr 1361 0 0 1361 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2007.0 RFn 2.0 610.0 TA TA Y 0 50 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2183 2184 20 RL 75.0 9825 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 5 1966 1966 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Rec 609.0 Unf 0.0 483.0 1092.0 GasA ... Y SBrkr 1092 0 0 1092 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1966.0 Unf 1.0 264.0 TA TA Y 259 0 0 0 161 0 NaN MnPrv NaN 0 4 2008 COD Abnorml NaN
2184 2185 85 RL 64.0 12102 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam SFoyer 5 5 1976 1976 Gable CompShg HdBoard Plywood BrkFace 222.0 TA TA CBlock Gd Gd Gd ALQ 456.0 Unf 0.0 0.0 456.0 GasA ... Y SBrkr 1033 0 0 1033 0.0 1.0 1 0 3 1 TA 6 Typ 0 NaN BuiltIn 1976.0 RFn 2.0 504.0 Fa TA Y 224 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Family NaN
2185 2186 20 RL 65.0 6500 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 6 6 1976 1976 Hip CompShg HdBoard Plywood BrkFace 84.0 TA TA CBlock TA NaN No BLQ 1033.0 Unf 0.0 94.0 1127.0 GasA ... Y SBrkr 1127 0 0 1127 0.0 1.0 1 1 3 1 TA 6 Typ 1 Po Detchd 1991.0 Unf 2.0 480.0 TA TA Y 0 0 138 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2186 2187 80 RL NaN 9638 Pave NaN IR1 Lvl AllPub CulDSac Gtl Edwards Norm Norm 1Fam SLvl 6 6 1977 1977 Hip CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA Av ALQ 368.0 Rec 120.0 541.0 1029.0 GasA ... Y SBrkr 1117 0 0 1117 1.0 0.0 1 0 3 1 TA 6 Typ 1 Fa Attchd 1977.0 RFn 2.0 542.0 TA TA Y 292 0 0 0 0 0 NaN NaN NaN 0 11 2008 WD Normal NaN
2187 2188 60 RL 72.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 2Story 6 7 1976 2001 Hip CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA Av ALQ 288.0 Unf 0.0 396.0 684.0 GasA ... Y SBrkr 684 714 0 1398 0.0 0.0 1 1 3 1 TA 6 Typ 1 TA Attchd 1976.0 Fin 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 2 2008 WD Normal NaN
2188 2189 20 RL 123.0 47007 Pave NaN IR1 Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 7 1959 1996 Gable CompShg Plywood Plywood None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 3820 0 0 3820 NaN NaN 3 1 5 1 Ex 11 Typ 2 Gd Attchd 1959.0 Unf 2.0 624.0 TA TA Y 0 372 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2189 2190 90 RL 65.0 6012 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm Duplex 1Story 4 5 1955 1955 Gable CompShg AsbShng Plywood None 0.0 TA Fa PConc NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N SBrkr 1152 0 0 1152 0.0 0.0 2 0 2 2 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 0 0 0 0 NaN NaN NaN 0 6 2008 WD AdjLand NaN
2190 2191 90 RL 74.0 6845 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm Duplex 1Story 4 5 1955 1955 Gable CompShg WdShing Wd Shng BrkCmn 58.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N FuseF 1152 0 0 1152 0.0 0.0 2 0 2 2 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2191 2192 190 RL 56.0 6931 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 2fmCon 1Story 4 5 1955 1955 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Av ALQ 784.0 Unf 0.0 0.0 784.0 GasA ... N FuseP 784 0 0 784 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 112 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2192 2193 50 RL 60.0 12180 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 5 7 1938 2007 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 585.0 585.0 GasA ... Y FuseF 585 468 0 1053 0.0 0.0 1 1 2 1 Ex 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 42 0 0 0 0 0 NaN NaN NaN 0 1 2008 WD Family NaN
2193 2194 50 RL 57.0 8050 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 5 8 1947 1993 Gable CompShg MetalSd MetalSd None 0.0 TA Gd Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 929 208 0 1137 0.0 0.0 1 1 4 1 TA 8 Min1 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2194 2195 20 RL 68.0 9520 Pave NaN Reg Bnk AllPub Inside Mod Edwards Norm Norm 1Fam 1Story 4 5 1953 1953 Gable CompShg MetalSd MetalSd Stone 115.0 TA TA CBlock Gd TA No Rec 767.0 Unf 0.0 144.0 911.0 GasA ... Y SBrkr 930 0 0 930 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1953.0 RFn 1.0 286.0 TA TA Y 134 0 0 0 0 0 NaN MnPrv Gar2 3000 5 2008 WD Normal NaN
2195 2196 80 RL 62.0 7692 Pave NaN Reg Bnk AllPub Inside Mod Edwards Norm Norm 1Fam SLvl 4 6 1954 1954 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock Ex TA Av Unf 0.0 Unf 0.0 416.0 416.0 GasA ... Y FuseA 1204 0 0 1204 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Basment 1954.0 Unf 1.0 312.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2008 WD Abnorml NaN
2196 2197 30 RL 67.0 5142 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 4 7 1923 2008 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No ALQ 224.0 Unf 0.0 725.0 949.0 GasA ... Y SBrkr 949 343 0 1292 0.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN Detchd 1923.0 Unf 1.0 205.0 TA TA N 0 0 183 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2197 2198 30 RL 60.0 7290 Pave NaN Reg Lvl AllPub Corner Gtl SWISU Norm Norm 1Fam 1Story 7 8 1921 1950 Gable CompShg WdShing Wd Shng BrkFace 174.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 1228.0 1228.0 GasA ... Y SBrkr 1424 0 0 1424 0.0 0.0 2 0 2 1 TA 7 Typ 1 Gd Attchd 1921.0 Unf 1.0 312.0 TA TA Y 0 0 90 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2198 2199 90 RL 64.0 7804 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Norm Norm Duplex 2.5Unf 6 7 1930 1950 Gable CompShg Stucco Stucco None 0.0 TA TA BrkTil TA TA No ALQ 281.0 Rec 679.0 0.0 960.0 GasA ... Y SBrkr 960 960 0 1920 2.0 0.0 2 2 4 2 TA 10 Typ 2 Gd Detchd 1930.0 Unf 2.0 480.0 TA TA Y 248 0 121 0 0 0 NaN NaN NaN 0 7 2008 WD Abnorml NaN
2199 2200 70 RL 66.0 8969 Pave NaN Reg Bnk AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 6 6 1926 1950 Gambrel CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No BLQ 379.0 Unf 0.0 265.0 644.0 GasA ... Y SBrkr 672 644 0 1316 1.0 0.0 1 0 2 1 TA 6 Typ 1 Gd Detchd 2001.0 Unf 1.0 369.0 TA TA P 0 0 0 0 192 0 NaN MnPrv NaN 0 7 2008 WD Normal NaN
2200 2201 50 RL 63.0 15564 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1.5Fin 6 6 1914 1995 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA BrkTil Gd TA No Unf 0.0 Unf 0.0 676.0 676.0 GasA ... Y SBrkr 676 588 0 1264 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1994.0 Unf 2.0 400.0 TA TA Y 424 0 0 0 0 0 NaN NaN Shed 400 1 2008 WD Normal NaN
2201 2202 70 RL 54.0 7609 Pave NaN Reg Lvl AllPub Corner Gtl Crawfor Norm Norm 1Fam 2Story 8 9 1925 1997 Gable CompShg Stucco Stucco None 0.0 Gd Gd PConc Fa TA No ALQ 406.0 Unf 0.0 392.0 798.0 GasA ... Y SBrkr 798 714 0 1512 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Detchd 1925.0 Unf 1.0 180.0 TA TA P 85 16 41 0 0 0 NaN GdPrv NaN 0 6 2008 WD Normal NaN
2202 2203 70 RL NaN 9650 Pave NaN IR1 HLS AllPub Corner Gtl Crawfor Norm Norm 1Fam 2Story 6 3 1923 1950 Hip CompShg Wd Sdng Plywood None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 784.0 784.0 GasA ... Y SBrkr 819 784 0 1603 0.0 0.0 1 0 4 1 TA 7 Typ 1 Gd Attchd 1980.0 Unf 2.0 599.0 TA TA Y 0 217 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2203 2204 50 RL NaN 11700 Pave Grvl IR1 HLS AllPub Inside Mod Crawfor Norm Norm 1Fam 1.5Fin 5 6 1937 1995 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA TA No BLQ 606.0 Unf 0.0 336.0 942.0 GasA ... Y SBrkr 1265 673 0 1938 0.0 0.0 2 0 4 1 Gd 7 Min2 1 Gd Detchd 1937.0 Unf 1.0 240.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2204 2205 50 RL NaN 9260 Pave Grvl IR1 HLS AllPub Inside Gtl Crawfor Feedr Norm 1Fam 1.5Fin 5 4 1938 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 884.0 884.0 GasA ... Y FuseF 932 442 0 1374 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1938.0 Unf 1.0 225.0 TA TA Y 64 0 0 0 100 0 NaN NaN NaN 0 3 2008 WD Normal NaN
2205 2206 20 RL 79.0 7801 Pave NaN IR1 Lvl AllPub Corner Gtl Crawfor Feedr Norm 1Fam 1Story 6 5 1951 1951 Hip CompShg WdShing Plywood BrkFace 88.0 TA Fa PConc TA TA No Rec 500.0 Unf 0.0 591.0 1091.0 GasA ... N FuseA 1091 0 0 1091 0.0 1.0 1 0 2 1 TA 5 Typ 1 TA Attchd 1951.0 Fin 1.0 344.0 TA TA Y 66 105 0 0 221 0 NaN MnPrv NaN 0 5 2008 WD Normal NaN
2206 2207 70 RL 100.0 9670 Pave NaN IR1 HLS AllPub Inside Mod Crawfor Norm Norm 1Fam 2Story 8 6 1935 1950 Gable CompShg BrkFace Stucco Stone 40.0 TA TA PConc TA Fa No LwQ 210.0 Unf 0.0 398.0 608.0 GasA ... Y SBrkr 983 890 0 1873 0.0 0.0 1 1 4 1 TA 9 Typ 2 Gd Detchd 1935.0 Fin 2.0 786.0 Fa TA Y 0 0 207 0 0 0 NaN NaN NaN 0 6 2008 WD Alloca NaN
2207 2208 50 RL 70.0 12392 Pave NaN Reg Bnk AllPub Inside Gtl Crawfor Norm Norm 1Fam 1.5Fin 7 9 1950 2000 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA Gd No GLQ 435.0 Unf 0.0 397.0 832.0 GasA ... Y SBrkr 1218 943 0 2161 1.0 0.0 2 1 3 1 Gd 8 Typ 2 TA Attchd 1994.0 Fin 2.0 506.0 TA TA Y 0 96 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2208 2209 20 RL 56.0 26073 Pave NaN IR1 Lvl AllPub CulDSac Gtl Crawfor Norm Norm 1Fam 1Story 5 5 1956 1956 Gable CompShg BrkFace MetalSd None 0.0 TA TA PConc TA TA No Rec 1116.0 Unf 0.0 782.0 1898.0 GasA ... Y FuseA 1898 0 0 1898 0.0 0.0 2 1 3 1 TA 7 Typ 2 TA Attchd 1956.0 Unf 2.0 484.0 TA TA Y 0 51 224 0 0 0 NaN MnPrv NaN 0 4 2008 WD Normal NaN
2209 2210 160 RM 24.0 1879 Pave NaN Reg Lvl AllPub CulDSac Gtl Blueste Norm Norm Twnhs 2Story 6 6 1980 1980 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Gd TA No GLQ 366.0 Unf 0.0 150.0 516.0 GasA ... Y SBrkr 516 516 0 1032 0.0 0.0 1 0 2 1 TA 5 Typ 1 TA Detchd 1980.0 Unf 2.0 462.0 TA TA Y 213 0 0 0 0 0 NaN GdPrv NaN 0 12 2008 WD Normal NaN
2210 2211 30 RM 50.0 7000 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 6 8 1926 1998 Gable CompShg VinylSd VinylSd None 0.0 TA Gd BrkTil TA TA No Rec 299.0 GLQ 40.0 555.0 894.0 GasA ... Y SBrkr 919 0 0 919 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1926.0 Unf 1.0 195.0 TA TA P 0 0 116 0 0 0 NaN MnPrv NaN 0 7 2008 WD Normal NaN
2211 2212 50 RM 60.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 6 8 1940 2006 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock Fa TA No Unf 0.0 Unf 0.0 720.0 720.0 GasA ... Y SBrkr 760 330 0 1090 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1940.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2212 2213 50 RM 58.0 8155 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 5 7 1930 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 780.0 780.0 GasA ... Y FuseA 780 420 0 1200 0.0 0.0 1 0 4 1 TA 7 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 96 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2213 2214 80 RM 75.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam SLvl 5 5 1967 1967 Hip CompShg HdBoard Plywood None 0.0 Fa TA CBlock Gd TA Mn Rec 257.0 Unf 0.0 367.0 624.0 GasA ... Y SBrkr 1092 564 0 1656 0.0 0.0 1 1 3 1 TA 7 Mod 1 Po Attchd 1967.0 Unf 1.0 288.0 TA TA Y 0 180 0 0 100 0 NaN MnPrv NaN 0 7 2008 WD Normal NaN
2214 2215 30 RM 60.0 7392 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 5 7 1930 1995 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 520.0 520.0 GasA ... Y FuseA 912 0 0 912 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1934.0 RFn 1.0 360.0 TA TA Y 0 90 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2215 2216 50 RM 75.0 9000 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 5 5 1958 1958 Gable CompShg WdShing Wd Shng BrkFace 162.0 TA TA CBlock TA TA No ALQ 330.0 Unf 0.0 821.0 1151.0 GasA ... Y FuseA 1151 804 0 1955 0.0 0.0 2 0 4 1 TA 7 Typ 0 NaN Attchd 1958.0 Fin 1.0 356.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 1 2008 WD Normal NaN
2216 2217 20 NaN 80.0 14584 Pave NaN Reg Low AllPub Inside Mod IDOTRR Norm Norm 1Fam 1Story 1 5 1952 1952 Gable CompShg AsbShng VinylSd None 0.0 Fa Po Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 Wall ... N FuseA 733 0 0 733 0.0 0.0 1 0 2 1 Fa 4 NaN 0 NaN Attchd 1952.0 Unf 2.0 487.0 Fa Po N 0 0 0 0 0 0 NaN NaN NaN 0 2 2008 WD Abnorml NaN
2217 2218 70 C (all) 60.0 5280 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Feedr Norm 1Fam 2Story 4 7 1895 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA Stone NaN Fa No Unf 0.0 Unf 0.0 173.0 173.0 GasA ... N SBrkr 825 536 0 1361 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1895.0 Unf 1.0 185.0 Fa TA Y 0 123 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2218 2219 50 C (all) 52.0 5150 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Feedr Norm 1Fam 1.5Fin 4 7 1910 2000 Gable CompShg Plywood Plywood None 0.0 TA TA PConc NaN TA No Unf 0.0 Unf 0.0 356.0 356.0 GasA ... N FuseA 671 378 0 1049 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1910.0 Unf 1.0 195.0 Po Fa N 0 0 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2219 2220 70 C (all) 60.0 9000 Grvl NaN Reg Bnk AllPub Inside Gtl IDOTRR Norm Norm 1Fam 2Story 4 6 1920 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA Stone Fa Fa Mn Unf 0.0 Unf 0.0 592.0 592.0 GasA ... Y SBrkr 432 432 0 864 0.0 0.0 1 1 3 1 Fa 5 Min2 0 NaN Detchd 1920.0 Unf 1.0 216.0 Fa Fa N 0 30 160 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2220 2221 120 RM 44.0 3843 Pave NaN IR1 HLS AllPub Inside Mod Crawfor Norm Norm TwnhsE 1Story 8 5 2007 2008 Hip CompShg CemntBd CmentBd Stone 186.0 Ex TA PConc Ex TA Gd GLQ 1476.0 Unf 0.0 120.0 1596.0 GasA ... Y SBrkr 1648 0 0 1648 1.0 1.0 2 0 2 1 Ex 5 Typ 1 Gd Attchd 2007.0 Fin 2.0 525.0 TA TA Y 162 53 0 153 0 0 NaN NaN NaN 0 8 2008 New Partial NaN
2221 2222 120 RM 44.0 3811 Pave NaN IR1 HLS AllPub Inside Mod Crawfor Norm Norm TwnhsE 1Story 7 5 2004 2005 Hip CompShg CemntBd CmentBd Stone 174.0 Gd TA PConc Ex TA Gd GLQ 1474.0 Unf 0.0 120.0 1594.0 GasA ... Y SBrkr 1646 0 0 1646 1.0 1.0 2 0 2 1 Ex 5 Typ 1 Gd Attchd 2004.0 Fin 2.0 482.0 TA TA Y 128 53 0 0 155 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2222 2223 20 RL NaN 23730 Pave NaN IR2 Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 7 5 1996 1997 Gable CompShg MetalSd MetalSd BrkFace 668.0 Gd TA PConc Ex TA Mn GLQ 700.0 Unf 0.0 1140.0 1840.0 GasA ... Y SBrkr 2032 0 0 2032 1.0 0.0 3 0 3 1 Gd 7 Typ 0 NaN Attchd 1996.0 Fin 3.0 786.0 TA TA Y 0 46 192 0 0 0 NaN NaN NaN 0 9 2008 WD Normal NaN
2223 2224 60 RL NaN 11050 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 2Story 7 5 1996 1997 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Mn Unf 0.0 Unf 0.0 910.0 910.0 GasA ... Y SBrkr 910 910 0 1820 0.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1996.0 Unf 3.0 816.0 TA TA Y 318 32 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal NaN
2224 2225 90 RL 76.0 10260 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm Duplex 2Story 5 4 1976 1976 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 936 936 0 1872 0.0 0.0 2 2 4 2 TA 8 Typ 0 NaN Attchd 1976.0 Unf 2.0 484.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2008 WD Abnorml NaN
2225 2226 20 RL 74.0 9990 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 4 5 1991 1991 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No ALQ 1383.0 Unf 0.0 297.0 1680.0 GasA ... Y SBrkr 1689 0 0 1689 1.0 0.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1991.0 Unf 2.0 432.0 TA TA Y 428 120 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2226 2227 120 RL 42.0 4084 Pave NaN IR1 Lvl AllPub Inside Gtl Timber Norm Norm TwnhsE 1Story 7 6 1986 1986 Gable CompShg VinylSd VinylSd BrkFace 340.0 Gd TA CBlock Gd TA Av GLQ 893.0 Unf 0.0 384.0 1277.0 GasA ... Y SBrkr 1501 0 0 1501 1.0 0.0 2 0 2 1 Gd 6 Typ 1 TA Attchd 1986.0 Fin 2.0 512.0 TA TA Y 240 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2227 2228 20 RL 74.0 11563 Pave NaN IR1 HLS AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2006 2007 Hip CompShg VinylSd VinylSd Stone 258.0 Gd TA PConc Ex TA Gd GLQ 1036.0 Unf 0.0 482.0 1518.0 GasA ... Y SBrkr 1537 0 0 1537 1.0 0.0 2 0 3 1 Gd 8 Typ 0 NaN Attchd 2007.0 Fin 3.0 788.0 TA TA Y 0 26 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2228 2229 60 RL 107.0 12852 Pave NaN IR1 HLS AllPub Corner Gtl Timber Norm Norm 1Fam 2Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 770.0 Unf 0.0 150.0 920.0 GasA ... Y SBrkr 920 860 0 1780 1.0 0.0 2 1 3 1 Gd 6 Typ 1 Gd Attchd 2007.0 Fin 2.0 612.0 TA TA Y 0 192 0 0 0 0 NaN NaN NaN 0 1 2008 New Partial NaN
2229 2230 80 RL 73.0 9802 Pave NaN Reg Lvl AllPub Inside Gtl Timber Norm Norm 1Fam SLvl 5 5 2006 2007 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 352.0 352.0 GasA ... Y SBrkr 712 730 0 1442 0.0 0.0 2 1 3 1 TA 6 Typ 0 NaN BuiltIn 2007.0 Fin 2.0 400.0 TA TA Y 100 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2230 2231 60 RL 81.0 12018 Pave NaN IR1 HLS AllPub Corner Gtl Timber Norm Norm 1Fam 2Story 7 5 2008 2008 Gable CompShg VinylSd VinylSd Stone 60.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 796.0 796.0 GasA ... Y SBrkr 796 816 0 1612 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2008.0 Fin 3.0 666.0 TA TA Y 0 64 0 0 0 0 NaN NaN NaN 0 10 2008 New Partial NaN
2231 2232 20 RL 75.0 12890 Pave NaN IR1 Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 6 5 1989 1989 Gable CompShg Wd Sdng Wd Sdng BrkFace 128.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 1495.0 1495.0 GasA ... Y SBrkr 1495 0 0 1495 0.0 0.0 2 0 3 1 TA 8 Typ 1 TA Attchd 1989.0 Unf 2.0 438.0 TA TA Y 252 0 192 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2232 2233 20 RL 93.0 18265 Pave NaN Reg Lvl AllPub Corner Gtl Timber Norm Norm 1Fam 1Story 6 5 1986 1986 Gable CompShg Plywood HdBoard BrkFace 228.0 Gd Gd CBlock Gd Gd Av GLQ 920.0 Rec 60.0 276.0 1256.0 GasA ... Y SBrkr 1256 0 0 1256 0.0 0.0 2 0 3 1 Gd 6 Typ 1 Fa Attchd 1986.0 Unf 2.0 578.0 TA TA Y 282 0 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal NaN
2233 2234 20 RL 82.0 11202 Pave NaN IR1 Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2003 2003 Hip CompShg VinylSd VinylSd BrkFace 206.0 Gd TA PConc Ex TA Av GLQ 1029.0 Unf 0.0 403.0 1432.0 GasA ... Y SBrkr 1440 0 0 1440 1.0 0.0 2 0 3 1 Gd 7 Typ 1 TA Attchd 2003.0 Fin 2.0 467.0 TA TA Y 185 95 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2234 2235 20 RL NaN 7915 Pave NaN IR1 Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 6 5 1999 2000 Hip CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA Mn GLQ 1223.0 Unf 0.0 443.0 1666.0 GasA ... Y SBrkr 1675 0 0 1675 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1999.0 RFn 2.0 435.0 TA TA Y 165 52 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal NaN
2235 2236 20 RL 79.0 11449 Pave NaN IR1 HLS AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 1011.0 Unf 0.0 873.0 1884.0 GasA ... Y SBrkr 1728 0 0 1728 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2007.0 Fin 2.0 520.0 TA TA Y 0 276 0 0 0 0 NaN NaN NaN 0 1 2008 WD Normal NaN
2236 2237 20 RL 85.0 11447 Pave NaN IR1 Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 674.0 Gd TA PConc Ex TA Av GLQ 1571.0 Unf 0.0 393.0 1964.0 GasA ... Y SBrkr 1964 0 0 1964 1.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2005.0 Fin 3.0 892.0 TA TA Y 0 265 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2237 2238 90 RM 97.0 8940 Pave NaN IR1 Lvl AllPub Corner Gtl Mitchel Norm Norm Duplex SFoyer 7 5 1997 1998 Gable CompShg VinylSd VinylSd BrkFace 200.0 TA Gd PConc Gd Gd Gd GLQ 1309.0 Unf 0.0 35.0 1344.0 GasA ... Y SBrkr 1344 0 0 1344 2.0 0.0 2 0 2 2 TA 8 Typ 0 NaN Attchd 1997.0 Fin 4.0 784.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2008 WD Alloca NaN
2238 2239 20 RL 77.0 9278 Pave NaN Reg Lvl AllPub FR2 Gtl Mitchel Feedr Artery 1Fam 1Story 5 5 2007 2008 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1092.0 1092.0 GasA ... Y SBrkr 1092 0 0 1092 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 52 0 0 0 0 NaN NaN NaN 0 2 2008 WD Abnorml NaN
2239 2240 120 RM 32.0 4500 Pave NaN Reg Lvl AllPub FR2 Gtl Mitchel Norm Norm TwnhsE 1Story 6 5 1997 1997 Hip CompShg VinylSd VinylSd BrkFace 197.0 TA TA PConc Ex TA No GLQ 864.0 Unf 0.0 325.0 1189.0 GasA ... Y SBrkr 1189 0 0 1189 1.0 0.0 2 0 2 1 TA 4 Typ 0 NaN Attchd 1997.0 RFn 2.0 392.0 TA TA Y 0 122 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2240 2241 85 RL 150.0 14137 Pave NaN Reg Lvl AllPub Corner Gtl Mitchel Norm Norm 1Fam SFoyer 4 5 1964 1964 Gable CompShg HdBoard HdBoard BrkFace 98.0 TA TA CBlock Gd TA Av ALQ 865.0 LwQ 247.0 88.0 1200.0 GasA ... Y SBrkr 1200 0 0 1200 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN 2Types 1964.0 Fin 3.0 850.0 TA TA Y 0 119 0 0 171 0 NaN NaN NaN 0 11 2008 ConLD Normal NaN
2241 2242 120 RM NaN 4224 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 1Story 5 6 1975 1975 Gable CompShg CemntBd CmentBd None 0.0 TA TA PConc Gd TA No GLQ 769.0 Unf 0.0 271.0 1040.0 GasA ... Y SBrkr 1040 0 0 1040 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1975.0 Unf 2.0 499.0 TA TA Y 0 100 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2242 2243 160 RM 41.0 2665 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 2Story 5 7 1976 1976 Gable CompShg CemntBd CmentBd None 0.0 TA TA PConc Gd TA No ALQ 318.0 Unf 0.0 232.0 550.0 GasA ... Y SBrkr 925 550 0 1475 0.0 0.0 2 0 4 1 TA 6 Typ 1 TA Attchd 1976.0 Unf 1.0 336.0 TA TA Y 92 26 0 0 0 0 NaN NaN NaN 0 5 2008 WD Normal NaN
2243 2244 180 RM 21.0 1974 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs SFoyer 4 7 1973 2006 Gable CompShg CemntBd CmentBd None 0.0 TA Gd CBlock Gd TA Av GLQ 501.0 Unf 0.0 25.0 526.0 GasA ... Y SBrkr 526 462 0 988 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN BuiltIn 1973.0 RFn 1.0 297.0 TA TA Y 120 101 0 0 0 0 NaN NaN NaN 0 6 2008 WD Normal NaN
2244 2245 180 RM 21.0 1596 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs SLvl 4 6 1973 1973 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock Gd TA Gd GLQ 437.0 Unf 0.0 25.0 462.0 GasA ... Y SBrkr 526 462 0 988 1.0 0.0 1 0 1 1 TA 4 Typ 1 Po BuiltIn 1973.0 RFn 1.0 297.0 TA TA Y 0 101 0 120 0 0 NaN GdWo NaN 0 7 2008 WD Normal NaN
2245 2246 20 RL NaN 17979 Pave NaN IR1 Lvl AllPub Corner Gtl Mitchel Norm Norm 1Fam 1Story 5 6 1968 1968 Gable CompShg Plywood Plywood None 0.0 TA Gd CBlock TA TA No ALQ 785.0 Unf 0.0 328.0 1113.0 GasA ... Y SBrkr 1160 0 0 1160 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Attchd 1968.0 Unf 1.0 257.0 TA TA Y 81 0 0 0 0 0 NaN GdWo Shed 500 2 2008 WD Normal NaN
2246 2247 160 RM 21.0 1477 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs 2Story 6 9 1970 2007 Gable CompShg CemntBd CmentBd None 0.0 TA Gd CBlock TA TA No GLQ 358.0 Unf 0.0 188.0 546.0 GasA ... Y SBrkr 546 546 0 1092 0.0 0.0 2 1 3 1 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 187 0 0 0 0 0 NaN NaN NaN 0 3 2008 WD Normal NaN
2247 2248 20 RL 59.0 6490 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 7 1983 1983 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA TA No GLQ 534.0 Unf 0.0 282.0 816.0 GasA ... Y SBrkr 816 0 0 816 0.0 1.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1983.0 Unf 1.0 264.0 TA TA Y 315 0 0 0 0 0 NaN GdWo NaN 0 4 2008 WD Normal NaN
2248 2249 20 RL 60.0 6600 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 6 1982 2005 Gable CompShg HdBoard Plywood None 0.0 TA TA CBlock TA TA No GLQ 638.0 Unf 0.0 207.0 845.0 GasA ... Y SBrkr 845 0 0 845 0.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Attchd 1982.0 Unf 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2008 WD Normal NaN
2249 2250 20 RL 74.0 12395 Pave NaN Reg Lvl AllPub Corner Gtl Mitchel Norm Norm 1Fam 1Story 5 6 1984 1984 Gable CompShg HdBoard Plywood None 0.0 TA TA CBlock TA TA No ALQ 647.0 Unf 0.0 217.0 864.0 GasA ... Y SBrkr 889 0 0 889 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1984.0 Unf 2.0 484.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2008 WD Normal NaN
2250 2251 70 NaN NaN 56600 Pave NaN IR1 Low AllPub Inside Gtl IDOTRR Norm Norm 1Fam 2.5Unf 5 1 1900 1950 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 686.0 686.0 GasA ... Y SBrkr 1150 686 0 1836 0.0 0.0 2 0 4 1 TA 7 Maj1 0 NaN Detchd 1900.0 Unf 1.0 288.0 TA Fa N 0 0 0 0 0 0 NaN NaN NaN 0 1 2008 WD Normal NaN
2251 2252 20 RL 85.0 10667 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1971 1971 Gable CompShg MetalSd MetalSd BrkFace 302.0 TA TA CBlock TA TA No BLQ 838.0 Unf 0.0 749.0 1587.0 GasA ... Y SBrkr 1587 0 0 1587 0.0 0.0 2 0 3 1 TA 7 Typ 1 Gd Attchd 1971.0 Unf 2.0 525.0 TA TA Y 0 44 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2252 2253 80 RL 56.0 8872 Pave NaN IR1 HLS AllPub Inside Gtl Gilbert Norm Norm 1Fam SLvl 6 5 1997 1997 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 384.0 384.0 GasA ... Y SBrkr 754 630 0 1384 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA BuiltIn 1997.0 Fin 2.0 390.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2253 2254 80 RL NaN 10147 Pave NaN IR1 Lvl AllPub CulDSac Gtl Gilbert Norm Norm 1Fam SLvl 6 5 1994 1994 Gable CompShg HdBoard HdBoard BrkFace 32.0 TA TA PConc Gd TA No LwQ 186.0 Unf 0.0 206.0 392.0 GasA ... Y SBrkr 924 770 0 1694 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA BuiltIn 1994.0 Fin 2.0 398.0 TA TA Y 256 64 0 0 0 0 NaN MnPrv NaN 0 3 2007 WD Normal NaN
2254 2255 60 RL NaN 8637 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1999 2000 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No ALQ 871.0 Unf 0.0 52.0 923.0 GasA ... Y SBrkr 947 767 0 1714 1.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 2000.0 Fin 2.0 451.0 TA TA Y 256 48 0 0 0 0 NaN NaN NaN 0 4 2007 WD Abnorml NaN
2255 2256 60 RL 63.0 7875 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 1996 1996 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA No Rec 414.0 Unf 0.0 277.0 691.0 GasA ... Y SBrkr 691 862 0 1553 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 1996.0 Fin 2.0 420.0 TA TA Y 0 44 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2256 2257 60 RL 60.0 7500 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1999 2003 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 938.0 938.0 GasA ... Y SBrkr 957 1342 0 2299 0.0 0.0 3 1 5 1 TA 7 Typ 1 TA Attchd 1999.0 Fin 2.0 482.0 TA TA Y 188 30 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2257 2258 20 RL NaN 9556 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 1Story 7 5 1992 1993 Gable CompShg HdBoard HdBoard BrkFace 52.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1168.0 1168.0 GasA ... Y SBrkr 1187 0 0 1187 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1992.0 RFn 2.0 420.0 TA TA Y 0 21 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2258 2259 60 RL NaN 7655 Pave NaN IR1 Lvl AllPub CulDSac Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1993 1994 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 903.0 903.0 GasA ... Y SBrkr 910 732 0 1642 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1993.0 RFn 2.0 392.0 TA TA Y 290 84 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2259 2260 20 RL 160.0 18160 Grvl NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 1Story 6 6 1964 1964 Gable CompShg HdBoard HdBoard BrkCmn 138.0 TA TA CBlock TA TA Av BLQ 550.0 Unf 0.0 752.0 1302.0 GasA ... Y SBrkr 1128 0 0 1128 1.0 0.0 1 0 3 1 TA 6 Typ 1 TA Attchd 1964.0 Unf 2.0 480.0 TA TA P 0 108 246 0 0 0 NaN MnPrv NaN 0 3 2007 WD Alloca NaN
2260 2261 120 RL 38.0 4740 Pave NaN IR1 Lvl AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 1988 1988 Gable CompShg CemntBd CmentBd None 0.0 Gd TA CBlock Gd TA Gd GLQ 248.0 Unf 0.0 918.0 1166.0 GasA ... Y SBrkr 1179 0 0 1179 1.0 0.0 2 0 2 1 TA 5 Typ 0 NaN Attchd 1988.0 RFn 2.0 480.0 TA TA Y 0 108 0 0 135 0 NaN NaN NaN 0 10 2007 WD Normal NaN
2261 2262 120 RL 35.0 5118 Pave NaN IR1 HLS AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 1990 1990 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA Gd GLQ 926.0 Unf 0.0 386.0 1312.0 GasA ... Y SBrkr 1321 0 0 1321 1.0 0.0 1 0 1 1 Gd 4 Typ 1 TA Attchd 1990.0 RFn 2.0 484.0 TA TA Y 0 64 140 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2262 2263 60 RL 98.0 12328 Pave NaN IR1 Lvl AllPub Inside Gtl StoneBr Norm Norm 1Fam 2Story 8 5 2005 2005 Hip CompShg VinylSd VinylSd Stone 146.0 Gd TA PConc Ex TA Mn GLQ 986.0 Unf 0.0 163.0 1149.0 GasA ... Y SBrkr 1164 1377 0 2541 1.0 0.0 3 1 4 1 Ex 10 Typ 1 Gd BuiltIn 2005.0 Fin 3.0 729.0 TA TA Y 120 32 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2263 2264 20 RL 52.0 51974 Pave NaN IR1 Lvl AllPub CulDSac Gtl StoneBr PosN Norm 1Fam 1Story 9 5 2006 2007 Hip CompShg VinylSd VinylSd BrkFace 710.0 Ex TA PConc Ex TA Av GLQ 1101.0 Unf 0.0 1559.0 2660.0 GasA ... Y SBrkr 2338 0 0 2338 1.0 0.0 2 1 4 1 Gd 8 Typ 2 Gd Attchd 2005.0 Fin 3.0 1110.0 Gd TA Y 0 135 0 0 322 0 NaN NaN NaN 0 6 2007 New Partial NaN
2264 2265 190 RL 195.0 41600 Pave NaN IR1 Lvl AllPub FR2 Gtl Gilbert Norm Norm 2fmCon 1Story 5 5 1969 1990 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA Gd ALQ 1047.0 Unf 0.0 53.0 1100.0 GasW ... Y SBrkr 1424 0 0 1424 1.0 0.0 1 1 3 1 TA 7 Mod 0 NaN 2Types 1969.0 Unf 3.0 828.0 TA TA N 144 0 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal NaN
2265 2266 120 RL 61.0 8035 Pave NaN IR1 HLS AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 9 5 2006 2006 Gable CompShg MetalSd MetalSd BrkFace 165.0 Gd TA PConc Ex TA Gd GLQ 797.0 Unf 0.0 815.0 1612.0 GasA ... Y SBrkr 1612 0 0 1612 1.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2006.0 Fin 2.0 556.0 TA TA Y 0 164 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2266 2267 20 RL 85.0 14082 Pave NaN IR1 HLS AllPub Inside Gtl StoneBr Norm Norm 1Fam 1Story 8 5 2006 2006 Hip CompShg VinylSd VinylSd BrkFace 945.0 Gd TA PConc Ex Gd Gd GLQ 1558.0 Unf 0.0 662.0 2220.0 GasA ... Y SBrkr 2234 0 0 2234 1.0 0.0 1 1 1 1 Gd 7 Typ 1 Gd Attchd 2006.0 RFn 2.0 724.0 TA TA Y 390 80 0 0 0 0 NaN NaN NaN 0 1 2007 WD Normal NaN
2267 2268 20 RL 81.0 13870 Pave NaN IR1 HLS AllPub Inside Gtl StoneBr PosA PosA 1Fam 1Story 10 5 2006 2007 Hip CompShg CemntBd CmentBd BrkFace 250.0 Ex TA PConc Ex TA Gd GLQ 1152.0 Unf 0.0 590.0 1742.0 GasA ... Y SBrkr 2042 0 0 2042 1.0 0.0 2 0 3 1 Ex 8 Typ 1 Gd Attchd 2007.0 Fin 3.0 724.0 TA TA Y 240 52 0 0 174 0 NaN NaN NaN 0 10 2007 New Partial NaN
2268 2269 20 RL NaN 10960 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 5 1984 1984 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA No GLQ 256.0 Unf 0.0 1028.0 1284.0 GasA ... Y SBrkr 1284 0 0 1284 1.0 0.0 2 0 3 1 TA 5 Typ 0 NaN Attchd 1984.0 Unf 2.0 480.0 TA TA Y 0 0 192 0 0 0 NaN NaN NaN 0 4 2007 COD Abnorml NaN
2269 2270 60 RL 78.0 12090 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 7 7 1981 2003 Gable CompShg MetalSd MetalSd BrkFace 306.0 Gd TA CBlock Gd TA No ALQ 321.0 Unf 0.0 404.0 725.0 GasA ... Y SBrkr 725 754 0 1479 0.0 0.0 2 1 3 1 Gd 6 Typ 1 TA Attchd 1981.0 RFn 2.0 484.0 TA TA Y 167 72 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2270 2271 20 RL 93.0 12299 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 7 6 1978 1985 Gable CompShg Plywood Plywood Stone 67.0 TA TA CBlock Gd TA No GLQ 1328.0 Unf 0.0 201.0 1529.0 GasA ... Y SBrkr 1664 0 0 1664 1.0 0.0 2 0 3 1 Gd 7 Typ 1 TA Attchd 1978.0 Fin 2.0 663.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 9 2007 WD Normal NaN
2271 2272 60 RL 61.0 11339 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes PosA Norm 1Fam 2Story 7 5 1979 1979 Hip WdShake HdBoard Plywood BrkFace 549.0 TA TA CBlock Gd TA No ALQ 758.0 Unf 0.0 22.0 780.0 GasA ... Y SBrkr 1085 845 0 1930 1.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1979.0 Fin 2.0 481.0 TA TA Y 192 72 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2272 2273 20 RL 79.0 11850 Pave NaN Reg Lvl AllPub FR2 Gtl NWAmes Norm Norm 1Fam 1Story 6 6 1984 1984 Gable CompShg Plywood Plywood BrkFace 98.0 TA TA CBlock Gd TA No ALQ 781.0 Unf 0.0 372.0 1153.0 GasA ... Y SBrkr 1177 0 0 1177 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1984.0 Fin 2.0 495.0 TA TA Y 204 103 0 0 0 0 NaN MnPrv NaN 0 8 2007 WD Normal NaN
2273 2274 20 RL 80.0 10400 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 5 1979 1999 Gable CompShg MetalSd MetalSd BrkFace 253.0 TA TA CBlock Gd TA No GLQ 903.0 Unf 0.0 356.0 1259.0 GasA ... Y SBrkr 1353 0 0 1353 1.0 0.0 2 0 2 1 TA 5 Typ 1 TA Attchd 1979.0 RFn 2.0 478.0 TA TA Y 240 141 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2274 2275 20 RL 128.0 13001 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes PosN Norm 1Fam 1Story 6 5 1971 1971 Hip CompShg HdBoard HdBoard BrkFace 176.0 TA TA CBlock TA TA Mn ALQ 492.0 BLQ 121.0 1012.0 1625.0 GasA ... Y SBrkr 1220 0 0 1220 0.0 1.0 2 0 2 1 TA 6 Typ 1 TA Attchd 1971.0 Unf 2.0 944.0 TA TA Y 0 0 249 0 0 0 NaN NaN NaN 0 9 2007 WD Normal NaN
2275 2276 80 RL 64.0 8991 Pave NaN IR1 Lvl AllPub CulDSac Gtl NWAmes PosN Norm 1Fam SLvl 7 6 1976 1976 Gable CompShg Plywood Plywood Stone 130.0 TA TA CBlock Gd TA Gd GLQ 624.0 Rec 604.0 0.0 1228.0 GasA ... Y SBrkr 1324 0 0 1324 0.0 1.0 2 0 3 1 Gd 5 Typ 1 Fa Attchd 1976.0 Fin 2.0 585.0 TA TA Y 407 36 0 0 0 0 NaN NaN NaN 0 2 2007 WD Normal NaN
2276 2277 60 RL 80.0 8000 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes PosN Norm 1Fam 2Story 6 6 1974 1974 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No ALQ 931.0 LwQ 153.0 0.0 1084.0 GasA ... Y SBrkr 1084 793 0 1877 1.0 0.0 2 1 4 1 TA 8 Typ 1 TA Attchd 1974.0 Unf 2.0 488.0 TA TA Y 0 96 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal NaN
2277 2278 20 RL 63.0 9457 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1970 1990 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No ALQ 566.0 Unf 0.0 359.0 925.0 GasA ... Y SBrkr 1422 0 0 1422 1.0 0.0 1 0 3 1 TA 7 Min2 0 NaN Detchd 1988.0 Unf 2.0 576.0 TA TA Y 252 0 0 0 0 0 NaN GdWo NaN 0 9 2007 WD Normal NaN
2278 2279 20 RL 66.0 7920 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1970 2002 Gable CompShg HdBoard HdBoard BrkFace 32.0 TA TA CBlock TA TA No ALQ 81.0 GLQ 619.0 214.0 914.0 GasA ... Y SBrkr 914 0 0 914 0.0 0.0 1 0 3 1 Ex 5 Typ 0 NaN Attchd 1970.0 RFn 1.0 368.0 TA Gd Y 120 0 0 0 0 0 NaN NaN NaN 0 10 2007 WD Normal NaN
2279 2280 20 RL NaN 17199 Pave NaN Reg Lvl AllPub FR2 Gtl NAmes Norm Norm 1Fam 1Story 4 7 1961 1961 Gable CompShg MetalSd MetalSd None 0.0 TA Gd BrkTil TA TA No ALQ 314.0 Unf 0.0 600.0 914.0 GasA ... Y SBrkr 914 0 0 914 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Basment 1961.0 Unf 1.0 270.0 Fa TA Y 140 0 0 0 0 0 NaN GdWo NaN 0 7 2007 WD Normal NaN
2280 2281 120 RH 33.0 4113 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm TwnhsE 1Story 6 5 2001 2001 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA Mn Unf 0.0 Unf 0.0 1337.0 1337.0 GasA ... Y SBrkr 1337 0 0 1337 0.0 0.0 2 0 2 1 Gd 5 Typ 1 TA Attchd 2001.0 Fin 2.0 511.0 TA TA Y 136 68 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2281 2282 120 RH 26.0 10943 Pave NaN IR2 Lvl AllPub FR2 Gtl NAmes Norm Norm TwnhsE 1Story 6 5 1997 1998 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No GLQ 930.0 Unf 0.0 475.0 1405.0 GasA ... Y SBrkr 1337 0 0 1337 1.0 0.0 2 0 2 1 Gd 5 Typ 1 TA Attchd 1997.0 Fin 2.0 522.0 TA TA Y 0 68 0 0 0 0 NaN NaN NaN 0 10 2007 WD Normal NaN
2282 2283 160 RM 21.0 2205 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 6 1973 1973 Gable CompShg HdBoard HdBoard BrkFace 567.0 TA TA CBlock TA TA No ALQ 312.0 Unf 0.0 213.0 525.0 GasA ... Y SBrkr 525 567 0 1092 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1973.0 Unf 1.0 264.0 TA TA Y 144 0 0 0 0 0 NaN NaN NaN 0 2 2007 WD Normal NaN
2283 2284 160 RM 21.0 2058 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 5 1973 1973 Gable CompShg HdBoard HdBoard BrkFace 265.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 672.0 672.0 GasA ... Y SBrkr 672 546 0 1218 0.0 0.0 1 1 4 1 Ex 7 Typ 0 NaN Detchd 1973.0 Unf 1.0 264.0 TA TA Y 0 28 0 0 0 0 NaN NaN NaN 0 12 2007 WD Normal NaN
2284 2285 120 RL 24.0 2304 Pave NaN Reg Lvl AllPub Inside Gtl NPkVill Norm Norm Twnhs 1Story 7 7 1978 1978 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock Gd TA No GLQ 632.0 Unf 6.0 423.0 1061.0 GasA ... Y SBrkr 1055 0 0 1055 0.0 0.0 2 0 2 1 TA 4 Typ 0 NaN Attchd 1978.0 Unf 1.0 319.0 TA TA Y 108 32 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2285 2286 20 RL 65.0 7150 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1966 1966 Hip CompShg HdBoard HdBoard BrkFace 52.0 TA TA CBlock TA TA No BLQ 725.0 Unf 0.0 263.0 988.0 GasA ... Y SBrkr 988 0 0 988 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1974.0 Unf 1.0 360.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal NaN
2286 2287 20 RL 96.0 12469 Pave NaN Reg Lvl AllPub FR2 Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2006 2007 Hip CompShg VinylSd VinylSd Stone 378.0 Ex TA PConc Ex TA Gd GLQ 1151.0 Unf 0.0 639.0 1790.0 GasA ... Y SBrkr 1816 0 0 1816 1.0 0.0 2 0 3 1 Ex 7 Typ 1 Gd Attchd 2007.0 Fin 3.0 730.0 TA TA Y 186 36 0 0 0 0 NaN NaN NaN 0 8 2007 New Partial NaN
2287 2288 20 RL 91.0 11825 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2006 2007 Gable CompShg CemntBd CmentBd Stone 302.0 Gd TA PConc Ex TA Mn Unf 0.0 Unf 0.0 1694.0 1694.0 GasA ... Y SBrkr 1694 0 0 1694 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 RFn 3.0 856.0 TA TA Y 0 112 0 0 0 0 NaN NaN NaN 0 6 2007 New Partial NaN
2288 2289 20 RL 110.0 14333 Pave NaN Reg Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Gd GLQ 1518.0 Unf 0.0 590.0 2108.0 GasA ... Y SBrkr 2122 0 0 2122 1.0 0.0 2 1 2 1 Gd 7 Typ 1 Ex Attchd 2007.0 Fin 3.0 938.0 TA TA Y 130 142 0 0 0 0 NaN NaN NaN 0 11 2007 New Partial NaN
2289 2290 60 RL 107.0 13641 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2007 2007 Hip CompShg CemntBd CmentBd BrkFace 456.0 Ex TA PConc Ex TA Gd GLQ 1304.0 Unf 0.0 630.0 1934.0 GasA ... Y SBrkr 1943 713 0 2656 1.0 0.0 2 1 3 1 Ex 8 Typ 1 Gd Attchd 2007.0 RFn 3.0 1040.0 TA TA Y 268 58 0 0 0 0 NaN NaN NaN 0 12 2007 New Partial NaN
2290 2291 60 RL 110.0 13440 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2006 2007 Hip CompShg VinylSd VinylSd BrkFace 190.0 Gd TA PConc Ex TA No Unf 0.0 Unf 0.0 1108.0 1108.0 GasA ... Y SBrkr 1148 1402 0 2550 0.0 0.0 2 1 4 1 Ex 11 Typ 1 Gd BuiltIn 2006.0 Fin 3.0 670.0 TA TA Y 120 39 0 0 0 0 NaN NaN NaN 0 3 2007 New Partial NaN
2291 2292 20 RL 105.0 15431 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 10 5 2005 2006 Hip CompShg VinylSd VinylSd BrkFace 400.0 Ex TA PConc Ex TA Gd GLQ 1430.0 Unf 0.0 564.0 1994.0 GasA ... Y SBrkr 2046 0 0 2046 1.0 0.0 2 1 2 1 Ex 7 Typ 2 Gd Attchd 2005.0 Fin 3.0 878.0 TA TA Y 188 65 0 0 175 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2292 2293 20 RL 107.0 13891 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2007 2007 Hip CompShg VinylSd VinylSd Stone 456.0 Ex TA PConc Ex TA Gd GLQ 1812.0 Unf 0.0 740.0 2552.0 GasA ... Y SBrkr 2552 0 0 2552 1.0 0.0 2 0 3 1 Ex 8 Typ 2 Ex Attchd 2007.0 Fin 3.0 932.0 TA TA Y 130 28 0 0 0 0 NaN NaN NaN 0 10 2007 New Partial NaN
2293 2294 60 RL 118.0 13654 Pave NaN IR1 Lvl AllPub CulDSac Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2005 2006 Gable CompShg MetalSd MetalSd BrkFace 365.0 Gd TA PConc Ex TA Gd Unf 0.0 Unf 0.0 1704.0 1704.0 GasA ... Y SBrkr 1722 1036 0 2758 0.0 0.0 2 1 4 1 Ex 9 Typ 1 Ex BuiltIn 2005.0 Fin 3.0 814.0 TA TA Y 282 55 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2294 2295 20 RL 59.0 17169 Pave NaN IR2 Lvl AllPub CulDSac Gtl NridgHt Norm Norm 1Fam 1Story 10 5 2007 2007 Hip CompShg CemntBd CmentBd BrkFace 970.0 Ex TA PConc Ex TA Av GLQ 1684.0 Unf 0.0 636.0 2320.0 GasA ... Y SBrkr 2290 0 0 2290 2.0 0.0 2 1 2 1 Ex 7 Typ 1 Gd Attchd 2007.0 Fin 3.0 1174.0 TA TA Y 192 30 0 0 0 0 NaN NaN NaN 0 8 2007 New Partial NaN
2295 2296 60 RL 134.0 16659 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2007 2008 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1582.0 1582.0 GasA ... Y SBrkr 1582 570 0 2152 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Detchd 2007.0 Unf 2.0 728.0 TA TA Y 0 368 0 0 0 0 NaN NaN NaN 0 6 2007 New Partial NaN
2296 2297 60 RL 82.0 9709 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 120.0 Ex TA PConc Ex TA Gd GLQ 778.0 Unf 0.0 140.0 918.0 GasA ... Y SBrkr 958 1142 0 2100 1.0 0.0 2 1 3 1 Ex 8 Typ 2 Gd BuiltIn 2007.0 Fin 3.0 786.0 TA TA Y 172 104 0 0 0 0 NaN NaN NaN 0 9 2007 New Partial NaN
2297 2298 20 RL 94.0 13615 Pave NaN IR1 HLS AllPub Corner Mod NridgHt Norm Norm 1Fam 1Story 9 5 2006 2006 Hip CompShg MetalSd MetalSd Stone 510.0 Ex TA PConc Ex TA Gd Unf 0.0 Unf 0.0 1802.0 1802.0 GasA ... Y SBrkr 1802 0 0 1802 0.0 0.0 2 1 3 1 Ex 7 Typ 1 Gd Attchd 2006.0 Fin 3.0 843.0 TA TA Y 158 105 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2298 2299 60 RL 99.0 13069 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 502.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1706.0 1706.0 GasA ... Y SBrkr 1718 1238 0 2956 0.0 0.0 2 1 5 1 Ex 11 Typ 1 Ex BuiltIn 2004.0 RFn 3.0 916.0 TA TA Y 194 50 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2299 2300 60 RL 110.0 14277 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 280.0 Gd TA PConc Ex TA Mn GLQ 938.0 Unf 0.0 379.0 1317.0 GasA ... Y SBrkr 1217 1168 0 2385 1.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2003.0 Fin 3.0 818.0 TA TA Y 192 228 0 0 0 0 NaN NaN NaN 0 1 2007 WD Normal NaN
2300 2301 60 RL NaN 12568 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2007 2007 Hip CompShg VinylSd VinylSd Stone 246.0 Gd TA PConc Ex TA Av GLQ 669.0 Unf 0.0 226.0 895.0 GasA ... Y SBrkr 895 923 0 1818 1.0 0.0 2 1 3 1 Ex 8 Typ 1 Gd Attchd 2007.0 Fin 3.0 774.0 TA TA Y 196 104 0 0 0 0 NaN NaN NaN 0 8 2007 New Partial NaN
2301 2302 20 RL 70.0 9926 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 210.0 Gd TA PConc Gd TA Mn GLQ 1178.0 Unf 0.0 436.0 1614.0 GasA ... Y SBrkr 1614 0 0 1614 1.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2005.0 RFn 3.0 878.0 TA TA Y 100 38 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2302 2303 20 RL 71.0 9254 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2005 2005 Gable CompShg VinylSd VinylSd BrkFace 210.0 Gd TA PConc Gd TA No GLQ 119.0 Unf 0.0 1602.0 1721.0 GasA ... Y SBrkr 1721 0 0 1721 1.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2005.0 RFn 2.0 554.0 TA TA Y 168 27 0 0 0 0 NaN NaN NaN 0 1 2007 WD Normal NaN
2303 2304 60 RL 92.0 10732 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2006 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1298.0 1298.0 GasA ... Y SBrkr 1298 530 0 1828 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN BuiltIn 2006.0 RFn 3.0 876.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 2 2007 New Partial NaN
2304 2305 120 RL 34.0 3901 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm Twnhs 1Story 6 5 2005 2006 Gable CompShg VinylSd VinylSd Stone 182.0 Gd TA PConc Gd TA Av ALQ 866.0 Unf 0.0 436.0 1302.0 GasA ... Y SBrkr 1302 0 0 1302 1.0 0.0 1 1 1 1 Gd 5 Typ 1 Gd Attchd 2005.0 RFn 2.0 631.0 TA TA Y 110 50 0 0 0 0 NaN NaN NaN 0 8 2007 New Partial NaN
2305 2306 120 RL 34.0 3903 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm Twnhs 1Story 6 5 2005 2006 Gable CompShg VinylSd VinylSd Stone 182.0 Gd TA PConc Gd TA Av ALQ 1030.0 Unf 0.0 272.0 1302.0 GasA ... Y SBrkr 1302 0 0 1302 1.0 0.0 1 1 1 1 Gd 5 Typ 1 Gd Attchd 2005.0 RFn 2.0 631.0 TA TA Y 110 50 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2306 2307 120 RL 41.0 6289 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 6 5 2005 2006 Gable CompShg VinylSd VinylSd Stone 256.0 Gd TA PConc Gd TA Av ALQ 762.0 Unf 0.0 600.0 1362.0 GasA ... Y SBrkr 1362 0 0 1362 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2005.0 RFn 2.0 460.0 TA TA Y 192 28 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2307 2308 120 RL 34.0 4590 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm Twnhs 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd Stone 108.0 Gd TA PConc Gd Gd Mn GLQ 24.0 Unf 0.0 1530.0 1554.0 GasA ... Y SBrkr 1554 0 0 1554 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2006.0 RFn 2.0 627.0 TA TA Y 156 73 0 0 0 0 NaN NaN NaN 0 5 2007 CWD Normal NaN
2308 2309 120 RL 48.0 7841 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 9 5 2005 2005 Hip CompShg MetalSd MetalSd BrkFace 394.0 Ex TA PConc Ex TA No GLQ 848.0 Unf 0.0 729.0 1577.0 GasA ... Y SBrkr 1577 0 0 1577 1.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2005.0 RFn 2.0 564.0 TA TA Y 203 39 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2309 2310 120 RL 48.0 6240 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 8 5 2006 2006 Hip CompShg MetalSd MetalSd BrkFace 176.0 Gd TA PConc Gd TA No GLQ 24.0 Unf 0.0 1300.0 1324.0 GasA ... Y SBrkr 1324 0 0 1324 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2006.0 Fin 2.0 550.0 TA TA Y 0 38 0 0 0 0 NaN NaN NaN 0 9 2007 New Partial NaN
2310 2311 120 RL 48.0 3242 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 7 5 2003 2003 Gable CompShg VinylSd Wd Shng Stone 235.0 Gd TA PConc Gd TA No GLQ 1000.0 Unf 0.0 405.0 1405.0 GasA ... Y SBrkr 1405 0 0 1405 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2003.0 RFn 2.0 478.0 TA TA Y 136 36 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2311 2312 60 RL 59.0 15810 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert RRAn Norm 1Fam 2Story 6 5 2007 2007 Gable CompShg VinylSd VinylSd NaN NaN Gd TA CBlock Gd TA No Unf 0.0 Unf 0.0 768.0 768.0 GasA ... Y SBrkr 768 728 0 1496 0.0 0.0 3 0 3 1 Gd 7 Typ 0 NaN Attchd 2007.0 Unf 2.0 572.0 TA TA Y 100 0 0 0 0 0 NaN NaN NaN 0 5 2007 New Partial NaN
2312 2313 60 RL 65.0 10237 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert RRAn Norm 1Fam 2Story 6 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 768.0 768.0 GasA ... Y SBrkr 768 768 0 1536 0.0 0.0 2 1 3 1 Gd 6 Typ 1 Gd Attchd 2005.0 Fin 2.0 400.0 TA TA Y 100 38 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2313 2314 60 RL 58.0 13204 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert RRAn Norm 1Fam 2Story 7 5 2006 2007 Gable CompShg VinylSd VinylSd Stone 44.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 608.0 608.0 GasA ... Y SBrkr 608 850 0 1458 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN BuiltIn 2007.0 Fin 2.0 454.0 TA TA Y 100 33 0 0 0 0 NaN NaN NaN 0 5 2007 New Partial NaN
2314 2315 60 RL 62.0 8857 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 738.0 738.0 GasA ... Y SBrkr 738 757 0 1495 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 RFn 2.0 440.0 TA TA Y 100 30 0 0 0 0 NaN NaN NaN 0 3 2007 New Partial NaN
2315 2316 60 RL 63.0 9729 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2006 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 698.0 698.0 GasA ... Y SBrkr 698 1048 0 1746 1.0 0.0 2 1 3 1 Gd 6 Typ 1 Gd BuiltIn 2007.0 Unf 3.0 350.0 TA TA Y 0 34 0 0 0 0 NaN NaN NaN 0 6 2007 New Partial NaN
2316 2317 20 RL 88.0 12216 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 1Story 6 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Av GLQ 918.0 Unf 0.0 408.0 1326.0 GasA ... Y SBrkr 1326 0 0 1326 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2005.0 Fin 2.0 388.0 TA TA Y 120 23 0 0 0 0 NaN NaN Shed 2000 6 2007 WD Normal NaN
2317 2318 60 RL 72.0 8229 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 22.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 752.0 752.0 GasA ... Y SBrkr 752 752 0 1504 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2007.0 Fin 2.0 440.0 TA TA Y 100 32 0 0 0 0 NaN NaN NaN 0 12 2007 New Partial NaN
2318 2319 60 RL 64.0 7713 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 16.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 728.0 728.0 GasA ... Y SBrkr 728 728 0 1456 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2007.0 Fin 2.0 400.0 TA TA Y 100 24 0 0 0 0 NaN NaN NaN 0 7 2007 New Partial NaN
2319 2320 20 RL 64.0 7697 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 1Story 7 6 2007 2007 Gable CompShg VinylSd VinylSd BrkFace 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1246.0 1246.0 GasA ... Y SBrkr 1258 0 0 1258 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2007.0 RFn 2.0 462.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2007 New Partial NaN
2320 2321 120 RL NaN 3621 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 8 5 2003 2003 Hip CompShg VinylSd VinylSd BrkFace 72.0 Gd TA PConc Gd TA Gd GLQ 1084.0 Unf 0.0 322.0 1406.0 GasA ... Y SBrkr 1589 0 0 1589 1.0 0.0 2 0 2 1 Gd 7 Typ 1 TA Attchd 2003.0 Fin 3.0 630.0 TA TA Y 143 20 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal NaN
2321 2322 20 RL 53.0 3710 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm 1Fam 1Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd BrkFace 16.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1266.0 1266.0 GasA ... Y SBrkr 1266 0 0 1266 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2007.0 Fin 2.0 388.0 TA TA Y 100 16 0 0 0 0 NaN NaN NaN 0 8 2007 New Partial NaN
2322 2323 80 RL 65.0 16219 Pave NaN IR2 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam SLvl 7 5 2004 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Gd GLQ 779.0 Unf 0.0 56.0 835.0 GasA ... Y SBrkr 1119 0 0 1119 1.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 2004.0 Fin 2.0 437.0 TA TA Y 100 24 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2323 2324 80 RL 87.0 11084 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam SLvl 7 5 2004 2004 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 192.0 Unf 0.0 192.0 384.0 GasA ... Y SBrkr 744 630 0 1374 1.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd BuiltIn 2004.0 Fin 2.0 400.0 TA TA Y 100 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Family NaN
2324 2325 20 RL 59.0 10936 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 1Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1510.0 1510.0 GasA ... Y SBrkr 1525 0 0 1525 0.0 0.0 2 1 3 1 Gd 6 Typ 1 Gd Attchd 2006.0 RFn 2.0 534.0 TA TA Y 100 18 0 0 0 0 NaN NaN NaN 0 4 2007 New Partial NaN
2325 2326 80 RL NaN 11950 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam SLvl 7 5 2003 2003 Gable CompShg VinylSd VinylSd NaN NaN Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 384.0 384.0 GasA ... Y SBrkr 754 640 0 1394 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA BuiltIn 2003.0 Fin 2.0 400.0 TA TA Y 100 0 0 0 0 0 NaN NaN NaN 0 10 2007 WD Normal NaN
2326 2327 60 RL 63.0 7875 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 16.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 847.0 847.0 GasA ... Y SBrkr 847 1101 0 1948 0.0 0.0 2 1 4 1 Gd 8 Typ 1 Gd BuiltIn 2003.0 Fin 2.0 434.0 TA TA Y 0 48 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2327 2328 60 RL NaN 8740 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 574.0 Unf 0.0 280.0 854.0 GasA ... Y SBrkr 864 1131 0 1995 0.0 0.0 2 1 4 1 Gd 8 Typ 1 Gd BuiltIn 2002.0 Fin 2.0 435.0 TA TA Y 264 48 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2328 2329 60 RL 58.0 9487 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2000 2000 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No GLQ 520.0 Unf 0.0 395.0 915.0 GasA ... Y SBrkr 940 750 0 1690 1.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 2000.0 RFn 2.0 442.0 TA TA Y 0 50 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2329 2330 60 RL 59.0 9649 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1999 2000 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 941.0 941.0 GasA ... Y SBrkr 961 683 0 1644 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1999.0 RFn 2.0 460.0 TA TA Y 460 42 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2330 2331 60 RL 100.0 12191 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1997 1998 Hip CompShg VinylSd VinylSd BrkFace 515.0 Gd TA PConc Gd TA Av GLQ 1181.0 Unf 0.0 598.0 1779.0 GasA ... Y SBrkr 1779 772 0 2551 1.0 0.0 2 1 4 1 Gd 8 Typ 2 TA Attchd 1998.0 Fin 3.0 925.0 TA TA Y 76 61 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2331 2332 60 RL 89.0 10557 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 9 5 1998 1998 Gable CompShg MetalSd MetalSd BrkFace 422.0 Gd TA PConc Ex TA Gd GLQ 672.0 Unf 0.0 736.0 1408.0 GasA ... Y SBrkr 1671 1407 0 3078 1.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1998.0 Fin 3.0 806.0 TA TA Y 108 87 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2332 2333 60 RL 74.0 11002 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1998 1999 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 1048.0 Unf 0.0 341.0 1389.0 GasA ... Y SBrkr 1411 1171 0 2582 1.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1998.0 Fin 3.0 758.0 TA TA Y 286 60 0 0 0 0 NaN NaN NaN 0 1 2007 WD Normal NaN
2333 2334 60 RL 83.0 10790 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 7 5 1998 1998 Gable CompShg VinylSd VinylSd BrkFace 275.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1066.0 1066.0 GasA ... Y SBrkr 1108 1277 0 2385 0.0 0.0 2 1 4 1 Gd 8 Typ 1 TA BuiltIn 1998.0 Fin 3.0 600.0 TA TA Y 120 38 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2334 2335 60 RL 88.0 11762 Pave NaN Reg Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1992 1993 Gable CompShg VinylSd VinylSd BrkFace 309.0 Gd TA PConc Ex TA No GLQ 335.0 Unf 0.0 770.0 1105.0 GasA ... Y SBrkr 1105 1097 0 2202 1.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1992.0 RFn 2.0 517.0 TA TA Y 0 65 0 0 144 0 NaN NaN NaN 0 9 2007 WD Normal NaN
2335 2336 60 RL 82.0 9044 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1996 1997 Gable CompShg VinylSd VinylSd BrkFace 526.0 Gd Gd PConc Gd TA No GLQ 1225.0 Unf 0.0 100.0 1325.0 GasA ... Y SBrkr 1335 1203 0 2538 0.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Attchd 1996.0 RFn 3.0 933.0 TA TA Y 198 92 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2336 2337 20 RL 75.0 9910 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Feedr Norm 1Fam 1Story 7 6 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1369.0 1369.0 GasA ... Y SBrkr 1369 0 0 1369 0.0 0.0 2 0 3 1 Gd 5 Typ 0 NaN Attchd 2007.0 Unf 2.0 605.0 TA TA Y 0 203 0 0 0 0 NaN NaN NaN 0 9 2007 New Partial NaN
2337 2338 20 RL 91.0 11830 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Feedr Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd BrkFace 164.0 Gd TA PConc Gd TA No GLQ 1220.0 Unf 0.0 322.0 1542.0 GasA ... Y SBrkr 1542 0 0 1542 1.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2007.0 Unf 3.0 852.0 TA TA Y 168 110 0 0 0 0 NaN NaN NaN 0 7 2007 New Partial NaN
2338 2339 20 RL 76.0 10612 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd BrkFace 248.0 Gd TA PConc Gd TA Mn GLQ 28.0 Unf 0.0 1496.0 1524.0 GasA ... Y SBrkr 1534 0 0 1534 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 Fin 2.0 484.0 TA TA Y 168 46 0 0 0 0 NaN NaN NaN 0 1 2007 WD Family NaN
2339 2340 20 RL 98.0 12291 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 10 5 2007 2007 Hip CompShg CemntBd CmentBd BrkFace 754.0 Ex TA PConc Ex TA Av GLQ 1572.0 Unf 0.0 394.0 1966.0 GasA ... Y SBrkr 1966 0 0 1966 1.0 0.0 2 0 1 1 Ex 6 Typ 1 Gd Attchd 2007.0 Fin 3.0 1092.0 TA TA Y 76 52 0 0 0 0 NaN NaN NaN 0 10 2007 New Partial NaN
2340 2341 20 RL 85.0 9965 Pave NaN Reg Lvl AllPub FR2 Gtl Somerst Feedr Norm 1Fam 1Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd NaN NaN Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1528.0 1528.0 GasA ... Y SBrkr 1528 0 0 1528 0.0 0.0 3 2 3 1 Gd 6 Typ 1 TA Attchd 2007.0 Unf 2.0 480.0 TA TA Y 0 228 0 0 0 0 NaN NaN NaN 0 9 2007 New Partial NaN
2341 2342 20 RL 74.0 8847 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2005 2005 Gable CompShg VinylSd VinylSd BrkFace 148.0 Gd TA PConc Gd TA Av GLQ 769.0 Unf 0.0 769.0 1538.0 GasA ... Y SBrkr 1538 0 0 1538 1.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2005.0 RFn 2.0 484.0 TA TA Y 146 40 0 0 0 0 NaN NaN NaN 0 12 2007 WD Normal NaN
2342 2343 20 RL 70.0 8251 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 143.0 Gd TA PConc Gd Gd Av GLQ 778.0 Unf 0.0 716.0 1494.0 GasA ... Y SBrkr 1506 0 0 1506 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2005.0 RFn 2.0 672.0 TA TA Y 192 35 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2343 2344 60 RL 70.0 9605 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 982.0 982.0 GasA ... Y SBrkr 982 995 0 1977 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2006.0 RFn 3.0 574.0 TA TA Y 240 53 0 0 0 0 NaN NaN NaN 0 7 2007 WD Family NaN
2344 2345 60 RL 75.0 8778 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1302.0 1302.0 GasA ... Y SBrkr 1302 528 0 1830 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN BuiltIn 2006.0 RFn 3.0 859.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2345 2346 20 FV 72.0 8640 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 24.0 Unf 0.0 1314.0 1338.0 GasA ... Y SBrkr 1338 0 0 1338 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2007.0 RFn 2.0 598.0 TA TA Y 0 141 0 0 0 0 NaN NaN NaN 0 11 2007 New Partial NaN
2346 2347 20 FV 75.0 9000 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 2006 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1335.0 1335.0 GasA ... Y SBrkr 1335 0 0 1335 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2007.0 RFn 2.0 575.0 TA TA Y 0 210 0 0 0 0 NaN NaN NaN 0 6 2007 New Partial NaN
2347 2348 60 FV 72.0 8640 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 350.0 Unf 0.0 546.0 896.0 GasA ... Y SBrkr 896 896 0 1792 0.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 2007.0 Fin 2.0 590.0 TA TA Y 184 96 0 0 0 0 NaN NaN NaN 0 11 2007 New Partial NaN
2348 2349 60 FV 81.0 10411 Pave NaN Reg Lvl AllPub Corner Gtl Somerst Norm Norm 1Fam 2Story 5 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA CBlock Gd TA NaN Unf 0.0 Unf 0.0 725.0 725.0 GasA ... Y SBrkr 725 863 0 1588 0.0 0.0 3 0 3 1 Gd 8 Typ 0 NaN Attchd 2007.0 Unf 2.0 561.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2007 New Partial NaN
2349 2350 60 FV 112.0 12217 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 2007 2007 Hip CompShg WdShing Wd Shng NaN NaN Gd TA PConc Ex TA Av GLQ 745.0 Unf 0.0 210.0 955.0 GasA ... Y SBrkr 955 925 0 1880 1.0 0.0 2 1 3 1 Ex 8 Typ 1 Gd Attchd 2007.0 Fin 3.0 880.0 TA TA Y 168 127 0 0 0 0 NaN NaN NaN 0 12 2007 New Partial NaN
2350 2351 20 FV 84.0 10440 Pave NaN Reg Lvl AllPub Corner Gtl Somerst Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg CemntBd CmentBd None 0.0 Ex TA PConc Gd TA Mn Unf 0.0 Unf 0.0 1574.0 1574.0 GasA ... Y SBrkr 1584 0 0 1584 0.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2007.0 Fin 2.0 594.0 TA TA Y 0 256 0 0 0 0 NaN NaN NaN 0 5 2007 New Partial NaN
2351 2352 20 FV 100.0 11824 Pave NaN IR1 Lvl AllPub Corner Gtl Somerst Norm Norm 1Fam 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd BrkFace 298.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1685.0 1685.0 GasA ... Y SBrkr 1685 0 0 1685 0.0 0.0 2 0 2 1 Gd 5 Typ 1 Gd Attchd 2006.0 Fin 3.0 658.0 TA TA Y 112 63 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2352 2353 60 FV 85.0 10625 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 6 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 353.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1158.0 1158.0 GasA ... Y SBrkr 1158 1285 0 2443 0.0 0.0 2 1 4 1 Gd 9 Min2 1 Gd BuiltIn 2004.0 RFn 3.0 744.0 TA TA Y 193 127 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2353 2354 20 RL 63.0 7500 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 6 5 2006 2007 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1100.0 1100.0 GasA ... Y SBrkr 1100 0 0 1100 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 136 0 0 0 0 NaN NaN NaN 0 6 2007 New Partial NaN
2354 2355 20 RL 63.0 7500 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd Gd No Unf 0.0 Unf 0.0 1143.0 1143.0 GasA ... Y SBrkr 1143 0 0 1143 0.0 0.0 1 1 3 1 Gd 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 55 0 0 0 0 NaN NaN NaN 0 10 2007 WD Normal NaN
2355 2356 20 RL 60.0 12450 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW RRAe Norm 1Fam 1Story 5 5 2003 2004 Gable CompShg VinylSd VinylSd BrkFace 126.0 Gd TA PConc Gd TA No GLQ 729.0 Unf 0.0 365.0 1094.0 GasA ... Y SBrkr 1094 0 0 1094 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Detchd 2004.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2356 2357 20 RL 65.0 7441 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd BrkFace 170.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1461.0 1461.0 GasA ... Y SBrkr 1486 0 0 1486 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2006.0 RFn 2.0 566.0 TA TA Y 0 32 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2357 2358 60 RL NaN 11613 Pave NaN IR2 Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam 2Story 6 5 1993 1997 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No ALQ 480.0 Unf 0.0 384.0 864.0 GasA ... Y SBrkr 920 900 0 1820 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1993.0 RFn 2.0 492.0 TA TA Y 144 85 0 0 0 0 NaN GdPrv NaN 0 5 2007 WD Normal NaN
2358 2359 160 RL 50.0 8012 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm TwnhsE 2Story 6 5 1980 1980 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 630.0 630.0 GasA ... Y SBrkr 630 636 0 1266 0.0 0.0 1 1 2 1 TA 5 Typ 2 TA Attchd 1980.0 RFn 1.0 283.0 TA TA Y 340 0 0 0 0 0 NaN MnPrv NaN 0 7 2007 WD Normal NaN
2359 2360 20 RL 64.0 6285 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1977 1977 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA No LwQ 138.0 Rec 351.0 405.0 894.0 GasA ... Y SBrkr 894 0 0 894 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1979.0 Unf 1.0 308.0 TA TA Y 192 0 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2360 2361 20 RL 84.0 7476 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Norm Norm 1Fam 1Story 5 7 1968 1968 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Rec 812.0 Unf 0.0 228.0 1040.0 GasA ... Y SBrkr 1040 0 0 1040 1.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Detchd 1991.0 Fin 2.0 686.0 TA TA Y 188 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2361 2362 60 RL NaN 19522 Pave NaN IR1 Bnk AllPub Inside Gtl Veenker Norm Norm 1Fam 2Story 7 5 1990 1990 Gable CompShg HdBoard HdBoard BrkFace 272.0 Gd TA PConc Gd TA No GLQ 727.0 Unf 0.0 496.0 1223.0 GasA ... Y SBrkr 1271 1232 0 2503 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1990.0 RFn 2.0 564.0 TA TA Y 0 99 0 0 182 0 NaN NaN NaN 0 2 2007 WD Normal NaN
2362 2363 20 RL 44.0 10751 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer RRAe Norm 1Fam 1Story 5 5 1974 1974 Gable CompShg Plywood Plywood BrkFace 44.0 TA TA CBlock Fa TA Gd ALQ 787.0 Unf 0.0 250.0 1037.0 GasA ... Y SBrkr 1037 0 0 1037 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1974.0 RFn 2.0 431.0 TA TA Y 136 47 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2363 2364 20 RL 43.0 12712 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer RRAe Norm 1Fam 1Story 6 7 1973 2006 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock Gd TA Mn ALQ 968.0 Unf 0.0 76.0 1044.0 GasA ... Y SBrkr 1055 0 0 1055 1.0 0.0 1 0 2 1 Gd 5 Typ 1 TA Attchd 1973.0 RFn 2.0 542.0 TA TA Y 455 0 0 0 0 0 NaN NaN NaN 0 1 2007 WD Abnorml NaN
2364 2365 120 FV 45.0 4379 Pave NaN IR1 Lvl AllPub FR2 Gtl Somerst Norm Norm TwnhsE 1Story 8 5 2004 2004 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA Av GLQ 851.0 Unf 0.0 527.0 1378.0 GasA ... Y SBrkr 1378 0 0 1378 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2004.0 Fin 2.0 540.0 TA TA Y 160 56 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2365 2366 120 FV 80.0 3523 Pave Pave IR1 Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 1Story 8 5 2006 2007 Gable CompShg VinylSd VinylSd Stone 30.0 Gd TA PConc Gd TA No GLQ 60.0 Unf 0.0 1081.0 1141.0 GasA ... Y SBrkr 1151 0 0 1151 1.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 2006.0 Fin 2.0 484.0 TA TA Y 0 60 0 0 0 0 NaN NaN NaN 0 2 2007 New Partial NaN
2366 2367 120 FV 32.0 3784 Pave Pave IR1 Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 1Story 8 5 2006 2007 Gable CompShg VinylSd VinylSd Stone 36.0 Gd TA PConc Gd TA No GLQ 60.0 Unf 0.0 1451.0 1511.0 GasA ... Y SBrkr 1565 0 0 1565 1.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 2006.0 Fin 2.0 476.0 TA TA Y 0 120 0 0 0 0 NaN NaN NaN 0 2 2007 New Partial NaN
2367 2368 120 FV 40.0 3606 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 1Story 7 5 2006 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex Gd No GLQ 937.0 Unf 0.0 415.0 1352.0 GasA ... Y SBrkr 1352 0 0 1352 1.0 0.0 2 0 2 1 Gd 5 Typ 1 Gd Attchd 2006.0 RFn 2.0 466.0 TA TA Y 0 241 0 0 0 0 NaN NaN NaN 0 8 2007 New Partial NaN
2368 2369 120 FV 30.0 5330 Pave Pave IR2 Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 1Story 8 5 2006 2007 Gable CompShg VinylSd VinylSd NaN NaN Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1550.0 1550.0 GasA ... Y SBrkr 1550 0 0 1550 0.0 0.0 2 1 2 1 Gd 5 Typ 0 NaN Attchd 2007.0 Fin 2.0 528.0 TA TA Y 0 102 0 0 0 0 NaN NaN NaN 0 7 2007 New Partial NaN
2369 2370 160 FV 24.0 2280 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 6 5 1999 1999 Gable CompShg MetalSd MetalSd BrkFace 342.0 TA TA PConc Gd TA No GLQ 565.0 Unf 0.0 179.0 744.0 GasA ... Y SBrkr 757 744 0 1501 1.0 0.0 2 1 3 1 TA 6 Typ 1 TA Detchd 1999.0 Unf 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 9 2007 WD Normal NaN
2370 2371 160 FV 24.0 2117 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 6 5 2000 2000 Gable CompShg MetalSd MetalSd BrkFace 216.0 Gd TA PConc Gd TA No GLQ 417.0 Unf 0.0 339.0 756.0 GasA ... Y SBrkr 769 804 0 1573 0.0 0.0 2 1 3 1 Gd 4 Typ 0 NaN Detchd 2000.0 Unf 2.0 440.0 TA TA Y 0 32 0 0 0 0 NaN NaN NaN 0 9 2007 WD Normal NaN
2371 2372 20 FV 73.0 7321 Pave Pave IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 7 5 1999 2000 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1339.0 1339.0 GasA ... Y SBrkr 1358 0 0 1358 0.0 0.0 2 0 3 1 Gd 5 Typ 0 NaN Detchd 1999.0 Unf 2.0 625.0 TA TA Y 176 174 0 0 0 0 NaN NaN NaN 0 12 2007 COD Normal NaN
2372 2373 60 FV NaN 8010 Pave Pave IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 2003 2004 Hip CompShg CemntBd CmentBd None 0.0 Gd TA PConc Ex TA No GLQ 964.0 Unf 0.0 90.0 1054.0 GasA ... Y SBrkr 1072 976 0 2048 1.0 0.0 2 1 3 1 Gd 8 Typ 2 Gd Detchd 2003.0 Unf 2.0 552.0 TA TA Y 0 48 0 0 180 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2373 2374 60 FV 106.0 8413 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 8 5 1998 1998 Gable CompShg VinylSd VinylSd None 0.0 Gd Gd PConc Ex TA Mn GLQ 901.0 Unf 0.0 319.0 1220.0 GasA ... Y SBrkr 1220 1142 0 2362 1.0 0.0 2 1 3 1 Gd 8 Typ 2 TA Attchd 1998.0 RFn 2.0 1105.0 Gd TA Y 147 0 36 0 144 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2374 2375 120 RL 50.0 9466 Pave NaN IR2 Lvl AllPub FR2 Gtl Veenker Norm Norm TwnhsE 1Story 8 5 1994 1995 Gable CompShg BrkFace BrkFace None 0.0 Gd TA PConc Gd TA Gd LwQ 457.0 ALQ 1037.0 0.0 1494.0 GasA ... Y SBrkr 1494 0 0 1494 1.0 0.0 1 1 1 1 Gd 5 Typ 1 Gd Attchd 1994.0 Fin 2.0 478.0 TA TA Y 0 30 0 0 217 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2375 2376 20 RL 80.0 12000 Pave NaN Reg Lvl AllPub Inside Gtl Veenker Norm Norm 1Fam 1Story 7 6 1980 1980 Hip CompShg VinylSd MetalSd BrkFace 600.0 Gd TA CBlock Gd TA No GLQ 1732.0 Unf 0.0 270.0 2002.0 GasA ... Y SBrkr 2362 0 0 2362 1.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1980.0 RFn 2.0 546.0 Gd TA Y 180 16 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2376 2377 20 RL 94.0 17778 Pave NaN IR1 Lvl AllPub Inside Gtl Veenker Norm Norm 1Fam 1Story 8 5 1981 1981 Hip CompShg BrkFace BrkFace None 0.0 Gd TA CBlock Gd TA Gd ALQ 1632.0 Rec 829.0 0.0 2461.0 GasA ... Y SBrkr 2497 0 0 2497 1.0 0.0 2 0 2 1 Gd 7 Typ 2 Gd Attchd 1981.0 RFn 2.0 676.0 TA TA Y 266 0 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2377 2378 20 RL 78.0 11700 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes RRAn Norm 1Fam 1Story 6 6 1968 1968 Gable CompShg MetalSd MetalSd BrkFace 41.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 912.0 912.0 GasA ... Y SBrkr 1152 0 0 1152 1.0 0.0 1 1 3 1 TA 7 Typ 0 NaN Attchd 1968.0 RFn 2.0 412.0 TA TA Y 0 126 0 0 0 0 NaN NaN NaN 0 9 2007 CWD Normal NaN
2378 2379 60 RL 80.0 8000 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes PosA Norm 1Fam 2Story 6 6 1970 1970 Gable CompShg VinylSd VinylSd BrkFace 525.0 TA TA CBlock TA TA No Rec 915.0 Unf 0.0 93.0 1008.0 GasA ... Y SBrkr 1403 1008 0 2411 1.0 0.0 2 1 4 1 TA 8 Typ 1 Po Attchd 1970.0 RFn 2.0 570.0 TA TA Y 0 192 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2379 2380 85 RL NaN 8723 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes PosN Norm 1Fam SFoyer 6 6 1969 1969 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA Av BLQ 973.0 Unf 0.0 0.0 973.0 GasA ... Y SBrkr 1082 0 0 1082 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1969.0 Unf 2.0 480.0 TA TA Y 160 0 0 0 0 0 NaN NaN NaN 0 1 2007 WD Normal NaN
2380 2381 20 RL 130.0 11700 Pave NaN Reg Lvl AllPub Corner Gtl NWAmes Norm Norm 1Fam 1Story 6 5 1968 1968 Gable CompShg HdBoard HdBoard BrkFace 196.0 TA TA PConc Gd TA No ALQ 910.0 Unf 0.0 385.0 1295.0 GasA ... Y SBrkr 1295 0 0 1295 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1968.0 Fin 2.0 528.0 TA TA Y 0 194 0 0 200 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2381 2382 20 RL 108.0 11358 Pave NaN IR1 Lvl AllPub Corner Gtl NWAmes Norm Norm 1Fam 1Story 7 7 1972 1987 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No BLQ 346.0 Unf 0.0 778.0 1124.0 GasA ... Y SBrkr 1610 0 0 1610 0.0 0.0 2 0 3 1 Gd 8 Typ 1 TA Attchd 1972.0 RFn 2.0 515.0 TA TA Y 202 0 0 0 256 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2382 2383 20 RL 80.0 9547 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 7 6 1993 1993 Gable CompShg VinylSd VinylSd BrkFace 112.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1594.0 1594.0 GasA ... Y SBrkr 1594 0 0 1594 0.0 0.0 2 0 2 1 Gd 6 Typ 1 TA Attchd 1993.0 RFn 2.0 472.0 TA TA Y 190 80 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2383 2384 60 RL 78.0 10530 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 2Story 7 6 1993 1993 Gable CompShg MetalSd MetalSd BrkFace 194.0 Gd TA PConc Gd TA No GLQ 819.0 Unf 0.0 329.0 1148.0 GasA ... Y SBrkr 1091 984 0 2075 1.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 1993.0 Unf 2.0 473.0 TA TA Y 235 86 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2384 2385 20 RL 88.0 10738 Pave NaN IR1 Lvl AllPub Corner Gtl NWAmes Norm Norm 1Fam 1Story 6 7 1966 1966 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No ALQ 792.0 Unf 0.0 301.0 1093.0 GasA ... Y SBrkr 1093 0 0 1093 1.0 0.0 2 0 3 1 TA 6 Typ 1 Fa Attchd 1966.0 RFn 2.0 484.0 TA TA Y 224 0 0 0 0 0 NaN MnPrv Shed 400 11 2007 WD Normal NaN
2385 2386 20 RL 80.0 10800 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 5 1963 1963 Gable CompShg HdBoard HdBoard BrkFace 203.0 TA TA CBlock TA TA No BLQ 617.0 Rec 264.0 171.0 1052.0 GasA ... Y SBrkr 1052 0 0 1052 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1963.0 Fin 1.0 311.0 TA TA Y 0 133 0 0 0 0 NaN NaN NaN 0 2 2007 COD Normal NaN
2386 2387 20 RL 70.0 8050 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1967 1993 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No ALQ 474.0 BLQ 38.0 437.0 949.0 GasA ... Y SBrkr 1107 0 0 1107 1.0 0.0 1 0 3 1 Gd 5 Typ 0 NaN Attchd 1967.0 RFn 1.0 308.0 TA TA Y 88 64 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2387 2388 90 RL NaN 10899 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm Duplex 1Story 4 5 1964 1964 Gable CompShg HdBoard HdBoard None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N SBrkr 1224 0 0 1224 0.0 0.0 2 0 2 2 TA 8 Typ 0 NaN CarPort 1964.0 Unf 3.0 530.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2388 2389 20 RL 74.0 7450 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1956 1956 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 438.0 LwQ 206.0 250.0 894.0 GasA ... Y SBrkr 1074 0 0 1074 0.0 0.0 1 0 2 1 Gd 6 Min1 1 Gd Detchd 1966.0 Unf 2.0 396.0 TA TA Y 0 72 0 0 0 0 NaN GdWo NaN 0 1 2007 WD Normal NaN
2389 2390 20 RL NaN 14357 Pave NaN IR1 Lvl AllPub CulDSac Gtl NAmes Norm Norm 1Fam 1Story 5 5 1961 1961 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No ALQ 311.0 LwQ 167.0 386.0 864.0 GasA ... Y SBrkr 1187 0 0 1187 1.0 0.0 1 0 2 1 TA 6 Typ 1 TA Attchd 1961.0 RFn 2.0 440.0 TA TA Y 128 0 0 0 0 0 NaN NaN NaN 0 8 2007 CWD Normal NaN
2390 2391 20 RL 76.0 8243 Pave NaN IR1 Lvl AllPub CulDSac Gtl NAmes Norm Norm 1Fam 1Story 5 7 1961 1961 Gable CompShg VinylSd VinylSd BrkFace 56.0 TA Gd CBlock TA TA No ALQ 700.0 Unf 0.0 264.0 964.0 GasA ... Y SBrkr 964 0 0 964 0.0 0.0 1 0 3 1 TA 5 Typ 1 Fa Detchd 1985.0 Fin 2.0 784.0 TA TA Y 170 0 0 0 0 0 NaN GdPrv NaN 0 2 2007 WD Normal NaN
2391 2392 20 RL 70.0 8680 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1960 1960 Hip CompShg CemntBd CmentBd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 894.0 894.0 GasA ... Y SBrkr 894 0 0 894 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1965.0 Unf 1.0 312.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 1 2007 WD Normal NaN
2392 2393 20 RL 80.0 8800 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 7 6 1966 1966 Hip CompShg HdBoard Plywood BrkFace 202.0 TA TA CBlock TA TA No BLQ 654.0 Unf 0.0 520.0 1174.0 GasA ... Y SBrkr 1200 0 0 1200 0.0 1.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1966.0 RFn 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 10 2007 CWD Normal NaN
2393 2394 80 RL 80.0 9200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 6 5 1965 1965 Gable CompShg HdBoard HdBoard BrkFace 98.0 TA TA CBlock TA TA Gd GLQ 494.0 Unf 0.0 548.0 1042.0 GasA ... Y SBrkr 1042 0 0 1042 0.0 0.0 2 0 3 1 TA 5 Typ 0 NaN Attchd 1965.0 RFn 2.0 440.0 TA TA Y 192 0 0 0 0 0 NaN GdPrv NaN 0 5 2007 WD Normal NaN
2394 2395 60 RL 80.0 8800 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 2Story 6 7 1964 1997 Gable CompShg MetalSd MetalSd BrkFace 306.0 TA Gd CBlock TA TA No ALQ 414.0 Unf 0.0 431.0 845.0 GasA ... Y SBrkr 845 1309 0 2154 0.0 0.0 2 1 5 1 TA 8 Typ 1 Gd Attchd 1964.0 RFn 2.0 539.0 TA TA Y 0 0 0 0 161 0 NaN MnPrv NaN 0 7 2007 WD Normal NaN
2395 2396 20 RL NaN 11382 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1964 1964 Gable CompShg Wd Sdng Plywood BrkFace 212.0 TA TA CBlock TA TA No ALQ 54.0 Rec 543.0 533.0 1130.0 GasA ... Y SBrkr 1374 0 0 1374 0.0 1.0 1 0 3 1 TA 7 Typ 1 TA Attchd 1964.0 RFn 1.0 286.0 TA TA Y 0 28 84 0 0 0 NaN MnPrv NaN 0 8 2007 WD Normal NaN
2396 2397 20 RL NaN 22002 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 7 1959 1991 Gable CompShg MetalSd MetalSd BrkFace 136.0 TA Gd CBlock TA TA Mn ALQ 1386.0 Unf 0.0 206.0 1592.0 GasA ... Y SBrkr 1652 0 0 1652 1.0 0.0 1 1 3 1 Gd 6 Typ 1 Gd Attchd 1959.0 RFn 2.0 510.0 TA TA Y 0 0 0 0 201 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2397 2398 45 RL 85.0 12172 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Unf 5 7 1940 1996 Gable CompShg Wd Sdng HdBoard None 0.0 TA TA PConc TA TA No LwQ 130.0 Rec 259.0 433.0 822.0 GasA ... Y SBrkr 908 0 0 908 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1975.0 Unf 2.0 512.0 TA TA Y 284 24 0 0 192 0 NaN MnPrv NaN 0 10 2007 WD Normal NaN
2398 2399 20 RL 50.0 5000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 3 3 1946 1950 Gable CompShg WdShing Wd Shng None 0.0 Fa Fa CBlock Fa Fa No LwQ 299.0 Unf 0.0 367.0 666.0 GasA ... N SBrkr 666 0 0 666 0.0 1.0 1 0 2 1 Gd 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 52 0 0 0 0 NaN MnPrv NaN 0 4 2007 WD Normal NaN
2399 2400 50 RL 51.0 3500 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Feedr Norm 1Fam 1.5Fin 3 5 1945 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No LwQ 144.0 Unf 0.0 226.0 370.0 GasA ... N FuseA 442 228 0 670 1.0 0.0 1 0 2 1 Fa 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 21 0 0 0 0 NaN MnPrv Shed 2000 7 2007 WD Normal NaN
2400 2401 20 RL 50.0 5175 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide RRAn Feedr 1Fam 1Story 5 8 1958 2000 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No BLQ 150.0 ALQ 404.0 254.0 808.0 GasA ... Y SBrkr 808 0 0 808 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1963.0 Unf 1.0 308.0 TA TA N 143 0 0 0 0 0 NaN NaN NaN 0 7 2007 COD Normal NaN
2401 2402 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1955 1955 Hip CompShg HdBoard HdBoard BrkFace 176.0 TA Gd CBlock TA TA No BLQ 368.0 Unf 0.0 710.0 1078.0 GasA ... Y SBrkr 1150 0 0 1150 1.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Attchd 1955.0 Fin 1.0 288.0 TA TA Y 0 0 0 0 175 0 NaN MnPrv NaN 0 10 2007 WD Normal NaN
2402 2403 90 RL 63.0 8668 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm Duplex 1Story 5 5 1968 1968 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1560.0 1560.0 GasA ... Y SBrkr 1560 0 0 1560 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Detchd 1968.0 Unf 3.0 792.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2403 2404 85 RL NaN 10050 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SFoyer 5 6 1966 1966 Gable CompShg HdBoard HdBoard BrkFace 87.0 TA TA CBlock TA TA Av GLQ 602.0 Unf 0.0 191.0 793.0 GasA ... Y SBrkr 1280 0 0 1280 0.0 1.0 2 0 3 1 TA 6 Typ 1 TA Basment 1966.0 Fin 2.0 432.0 TA TA Y 140 40 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2404 2405 80 RL 100.0 9600 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 6 5 1961 1961 Hip CompShg WdShing Wd Shng BrkFace 291.0 TA TA CBlock TA TA Av ALQ 600.0 Unf 0.0 618.0 1218.0 GasA ... Y SBrkr 1254 0 0 1254 1.0 0.0 1 0 3 1 TA 6 Typ 1 Gd Attchd 1961.0 RFn 2.0 525.0 TA TA Y 0 0 0 0 168 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2405 2406 20 RL 73.0 8760 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 7 1957 1999 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No ALQ 873.0 Unf 0.0 63.0 936.0 GasA ... Y SBrkr 936 0 0 936 1.0 0.0 1 0 2 1 Gd 4 Typ 0 NaN Attchd 1957.0 RFn 1.0 315.0 TA TA Y 0 0 0 219 0 0 NaN NaN NaN 0 9 2007 WD Normal NaN
2406 2407 20 RL 65.0 6860 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1956 1956 Gable CompShg Wd Sdng Wd Sdng BrkCmn 54.0 TA TA CBlock TA TA No GLQ 908.0 Unf 0.0 100.0 1008.0 GasA ... Y SBrkr 1008 0 0 1008 1.0 0.0 1 0 3 1 Fa 6 Typ 0 NaN Detchd 1964.0 Unf 1.0 308.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 12 2007 WD Normal NaN
2407 2408 20 RL 60.0 8250 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 7 1963 1963 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No ALQ 288.0 Unf 0.0 765.0 1053.0 GasA ... Y SBrkr 1053 0 0 1053 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN 2Types 1994.0 RFn 2.0 692.0 TA TA Y 240 0 0 0 109 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2408 2409 20 RL 70.0 9100 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1960 1960 Hip CompShg HdBoard HdBoard BrkCmn 69.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1144.0 1144.0 GasA ... Y SBrkr 1144 0 0 1144 0.0 0.0 1 0 3 1 TA 6 Typ 1 Gd Attchd 1960.0 RFn 1.0 336.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2409 2410 20 RL 80.0 9736 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam 1Story 6 6 1957 1969 Gable CompShg Wd Sdng Wd Sdng BrkFace 289.0 TA TA CBlock TA TA No BLQ 668.0 Rec 138.0 525.0 1331.0 GasA ... Y SBrkr 1721 0 0 1721 0.0 0.0 1 0 4 1 TA 8 Typ 3 TA Attchd 1957.0 Unf 2.0 464.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2410 2411 20 RL 72.0 9770 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1957 1957 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 512.0 Unf 0.0 410.0 922.0 GasA ... Y FuseA 922 0 0 922 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1957.0 Unf 1.0 308.0 TA TA Y 0 34 0 0 0 0 NaN GdWo NaN 0 4 2007 WD Normal NaN
2411 2412 20 RL 70.0 12198 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1955 1975 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA Av Rec 780.0 Unf 0.0 424.0 1204.0 GasA ... Y SBrkr 1411 0 0 1411 0.0 0.0 1 0 3 1 TA 7 Typ 1 TA Attchd 1955.0 RFn 1.0 310.0 TA TA Y 278 82 0 0 0 0 NaN NaN NaN 0 6 2007 COD Normal NaN
2412 2413 20 RL 75.0 10050 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1955 1955 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 288.0 Unf 0.0 928.0 1216.0 GasA ... Y SBrkr 1216 0 0 1216 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1955.0 RFn 1.0 336.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2413 2414 20 RL 60.0 11556 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 9 1953 2006 Gable CompShg VinylSd MetalSd None 0.0 TA Ex CBlock TA TA No BLQ 408.0 Unf 0.0 456.0 864.0 GasA ... Y SBrkr 1154 0 0 1154 0.0 0.0 1 1 3 1 Ex 6 Typ 0 NaN Detchd 1962.0 Unf 1.0 336.0 TA TA Y 63 0 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2414 2415 90 RL 70.0 8078 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm Duplex 1Story 5 5 1958 1958 Hip CompShg Wd Sdng Wd Sdng Stone 260.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1560.0 1560.0 GasA ... Y SBrkr 1560 0 0 1560 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Detchd 1958.0 Unf 2.0 484.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 12 2007 WD Normal NaN
2415 2416 20 RL 60.0 10950 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1952 1952 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No ALQ 441.0 Unf 0.0 507.0 948.0 GasA ... Y SBrkr 948 0 0 948 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1952.0 Unf 2.0 410.0 TA TA N 0 48 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2416 2417 20 RL 68.0 7942 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 7 1953 1953 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 85.0 ALQ 955.0 0.0 1040.0 GasA ... Y FuseF 1040 0 0 1040 0.0 1.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1953.0 Fin 1.0 293.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 6 2007 WD Normal NaN
2417 2418 20 RL 71.0 8540 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 8 1956 2003 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA TA No Rec 114.0 ALQ 691.0 120.0 925.0 GasA ... Y SBrkr 925 0 0 925 1.0 0.0 1 0 3 1 Gd 5 Typ 0 NaN Detchd 1956.0 Unf 1.0 252.0 TA TA Y 152 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2418 2419 50 RL 55.0 7150 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Fin 4 4 1955 1955 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No Rec 150.0 Unf 0.0 1040.0 1190.0 GasA ... Y SBrkr 1040 500 0 1540 1.0 0.0 1 0 4 1 Fa 7 Typ 0 NaN Detchd 2002.0 Unf 1.0 352.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2419 2420 20 RL 70.0 8400 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 5 1955 1955 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No BLQ 793.0 Unf 0.0 130.0 923.0 GasA ... Y SBrkr 925 0 0 925 1.0 0.0 1 0 3 1 TA 5 Typ 2 TA Attchd 1955.0 Unf 1.0 390.0 TA TA Y 81 0 0 0 0 0 NaN GdWo NaN 0 3 2007 WD Normal NaN
2420 2421 20 RL 75.0 9532 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 4 6 1953 1953 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No BLQ 595.0 Rec 354.0 156.0 1105.0 GasA ... Y SBrkr 1647 0 0 1647 1.0 0.0 1 0 3 1 TA 6 Min1 1 Fa Attchd 1953.0 Fin 1.0 280.0 TA TA Y 225 0 0 0 0 368 NaN GdPrv NaN 0 2 2007 WD Normal NaN
2421 2422 20 RL NaN 15783 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1Story 5 5 1952 1952 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 292.0 Unf 0.0 632.0 924.0 GasA ... Y SBrkr 924 0 0 924 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1952.0 Unf 1.0 420.0 TA TA Y 0 324 0 0 0 0 NaN MnPrv Shed 400 6 2007 WD Normal NaN
2422 2423 50 RL 60.0 14190 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 1.5Fin 4 7 1890 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd Gd CBlock Fa TA No Unf 0.0 Unf 0.0 925.0 925.0 GasA ... Y SBrkr 1000 544 0 1544 0.0 0.0 2 0 3 1 TA 7 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 231 0 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2423 2424 50 RL NaN 12099 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Fin 5 6 1953 2004 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA Fa No LwQ 198.0 Unf 0.0 1018.0 1216.0 GasA ... Y SBrkr 1216 0 512 1728 1.0 0.0 1 0 3 1 TA 7 Typ 1 Gd Attchd 1953.0 Unf 1.0 371.0 TA TA Y 200 0 0 0 0 0 NaN GdWo NaN 0 6 2007 WD Normal NaN
2424 2425 70 RL 113.0 21281 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 2Story 5 4 1935 2007 Gable CompShg Wd Sdng MetalSd None 0.0 TA TA BrkTil TA Fa No Unf 0.0 Unf 0.0 666.0 666.0 GasA ... Y SBrkr 1308 1778 0 3086 0.0 0.0 3 1 4 1 Gd 9 Min1 0 NaN BuiltIn 2007.0 Unf 3.0 1200.0 TA TA Y 0 208 290 0 156 0 NaN NaN NaN 0 11 2007 WD Family NaN
2425 2426 50 RL 60.0 10284 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1.5Fin 4 7 1925 1993 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA Mn ALQ 1030.0 LwQ 66.0 55.0 1151.0 GasA ... Y SBrkr 845 436 0 1281 1.0 0.0 2 0 1 1 TA 6 Mod 0 NaN Detchd 1978.0 Unf 2.0 580.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2007 WD Abnorml NaN
2426 2427 70 RL 60.0 10800 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 5 9 1895 1999 Gable CompShg Wd Sdng HdBoard None 0.0 TA Gd CBlock Gd TA Av Unf 0.0 Unf 0.0 736.0 736.0 GasA ... Y SBrkr 751 783 0 1534 0.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 112 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2427 2428 80 RL 93.0 10090 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 7 5 1963 1999 Gable CompShg Plywood Plywood BrkFace 364.0 TA TA CBlock TA TA Av Rec 242.0 ALQ 483.0 0.0 725.0 GasA ... Y SBrkr 1035 616 0 1651 0.0 1.0 2 0 4 1 TA 6 Typ 2 TA BuiltIn 1963.0 Unf 1.0 276.0 TA TA Y 460 46 0 0 165 0 NaN MnPrv NaN 0 10 2007 WD Normal NaN
2428 2429 20 RL 75.0 8700 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1961 1961 Gable CompShg HdBoard HdBoard BrkFace 53.0 TA TA CBlock TA TA No ALQ 192.0 Unf 0.0 728.0 920.0 GasA ... Y SBrkr 888 0 0 888 0.0 1.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1961.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 2 2007 COD Abnorml NaN
2429 2430 20 RL 66.0 8300 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1968 1968 Gable CompShg Wd Sdng Wd Sdng BrkFace 86.0 TA TA CBlock TA TA Mn Rec 952.0 Unf 0.0 0.0 952.0 GasA ... Y SBrkr 952 0 0 952 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1968.0 Unf 1.0 288.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2430 2431 20 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 3 1950 1950 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA TA No LwQ 432.0 Unf 0.0 432.0 864.0 GasA ... Y FuseA 1238 0 0 1238 0.0 0.0 1 1 3 1 TA 6 Min2 1 TA Attchd 1950.0 Unf 1.0 357.0 TA TA Y 0 171 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal NaN
2431 2432 20 RL NaN 7500 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1959 2003 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No GLQ 574.0 Unf 0.0 466.0 1040.0 GasA ... Y SBrkr 1040 0 0 1040 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Attchd 1959.0 RFn 1.0 286.0 TA TA Y 0 0 0 0 0 0 NaN NaN Shed 0 7 2007 WD Normal NaN
2432 2433 20 RL 70.0 7315 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1958 1958 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No Rec 625.0 Unf 0.0 545.0 1170.0 GasA ... Y SBrkr 1170 0 0 1170 0.0 1.0 1 0 3 1 TA 6 Typ 1 TA Attchd 1958.0 RFn 1.0 338.0 TA TA Y 0 0 0 0 225 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2433 2434 20 RL 70.0 7903 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1960 1960 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No Rec 739.0 Unf 0.0 503.0 1242.0 GasA ... Y FuseA 1242 0 0 1242 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1960.0 RFn 1.0 324.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Family NaN
2434 2435 20 RL 80.0 8000 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1960 1960 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No BLQ 1098.0 Rec 154.0 125.0 1377.0 GasA ... Y SBrkr 1377 0 0 1377 1.0 0.0 1 0 3 1 TA 6 Typ 2 TA Attchd 1965.0 Unf 1.0 351.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 11 2007 WD Normal NaN
2435 2436 20 RL 70.0 7000 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Feedr Norm 1Fam 1Story 5 6 1961 1961 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 925 0 0 925 0.0 0.0 1 0 3 1 TA 7 Typ 0 NaN Attchd 1961.0 Fin 1.0 300.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2436 2437 20 RL 60.0 6600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes PosN Norm 1Fam 1Story 5 5 1962 1962 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No ALQ 110.0 BLQ 442.0 312.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1962.0 Unf 1.0 294.0 TA TA Y 58 0 0 0 0 0 NaN NaN NaN 0 12 2007 WD Normal NaN
2437 2438 85 RL 66.0 6760 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SFoyer 5 5 1962 1962 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA Av ALQ 734.0 Unf 0.0 162.0 896.0 GasA ... Y SBrkr 936 0 0 936 1.0 0.0 1 0 3 1 TA 6 Typ 1 Po Attchd 1962.0 RFn 1.0 288.0 TA TA Y 24 90 160 0 0 0 NaN NaN NaN 0 10 2007 WD Normal NaN
2438 2439 30 RM 60.0 6978 Pave NaN Reg Bnk AllPub Inside Gtl OldTown Artery Norm 1Fam 1Story 5 7 1926 1980 Gable CompShg MetalSd MetalSd None 0.0 Gd Gd BrkTil TA TA No Unf 0.0 Unf 0.0 850.0 850.0 GasA ... Y SBrkr 960 0 0 960 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1981.0 RFn 2.0 576.0 TA TA Y 0 0 116 0 0 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2439 2440 50 RM 50.0 6000 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 6 6 1927 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Rec 276.0 Unf 0.0 569.0 845.0 GasA ... Y SBrkr 866 430 0 1296 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1980.0 Unf 2.0 576.0 TA TA Y 0 0 175 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2440 2441 30 RM 56.0 4480 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Artery Norm 1Fam 1Story 5 5 1922 1950 Gable CompShg AsbShng AsbShng None 0.0 TA TA PConc Fa Fa No LwQ 782.0 Unf 0.0 240.0 1022.0 GasA ... N FuseF 1022 0 0 1022 1.0 0.0 1 0 2 1 Fa 4 Typ 1 Gd Detchd 1922.0 Unf 1.0 184.0 TA Fa N 0 122 20 0 0 0 NaN MnPrv NaN 0 2 2007 WD Normal NaN
2441 2442 30 RM 56.0 3153 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 6 1920 1990 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 967.0 967.0 GasA ... Y SBrkr 967 0 0 967 0.0 0.0 1 0 2 1 TA 5 Typ 1 Gd Detchd 1920.0 Unf 1.0 180.0 Fa TA N 0 0 26 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2442 2443 30 RM 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 8 1940 1950 Gable CompShg VinylSd VinylSd Stone 279.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 808.0 808.0 GasA ... Y SBrkr 1072 0 0 1072 0.0 0.0 1 0 2 1 TA 5 Typ 2 Gd Detchd 1940.0 Unf 2.0 379.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2443 2444 50 RM 120.0 9000 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1.5Fin 5 8 1900 2006 Gable CompShg Stucco Stucco None 0.0 TA TA BrkTil TA Fa No BLQ 130.0 Unf 0.0 550.0 680.0 GasA ... Y SBrkr 680 494 0 1174 0.0 0.0 1 0 2 1 Gd 6 Typ 1 Gd Detchd 2000.0 Unf 2.0 576.0 TA TA Y 116 26 40 0 0 0 NaN MnPrv NaN 0 6 2007 WD Normal NaN
2444 2445 50 RM 50.0 5925 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 4 6 1900 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil Fa TA No LwQ 122.0 Rec 448.0 0.0 570.0 GasA ... N SBrkr 761 380 0 1141 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1930.0 Unf 1.0 252.0 Fa Fa Y 0 0 96 0 0 0 NaN NaN NaN 0 5 2007 ConLw Normal NaN
2445 2446 70 RM 57.0 9639 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 1Fam 2Story 4 8 1900 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 1075.0 1075.0 GasA ... Y SBrkr 1156 642 0 1798 0.0 0.0 2 1 4 1 TA 7 Typ 0 NaN Detchd 1935.0 Unf 2.0 342.0 TA TA N 0 0 160 0 0 0 NaN MnPrv NaN 0 5 2007 WD Normal NaN
2446 2447 70 RM NaN 10337 Pave Pave IR1 Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 8 9 1910 1999 Hip CompShg VinylSd VinylSd None 0.0 Gd Gd BrkTil TA TA No Unf 0.0 Unf 0.0 725.0 725.0 GasA ... N SBrkr 909 863 0 1772 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Detchd 1992.0 Unf 2.0 816.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 5 2007 WD Normal NaN
2447 2448 70 RM 53.0 9863 Pave Pave Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 6 6 1927 1950 Gambrel CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No LwQ 196.0 Rec 210.0 322.0 728.0 GasA ... Y SBrkr 914 728 0 1642 0.0 1.0 1 1 4 1 TA 9 Typ 1 Gd Detchd 1927.0 Unf 1.0 374.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2007 WD Abnorml NaN
2448 2449 70 RM 35.0 4571 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 5 7 1910 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No BLQ 168.0 Unf 0.0 448.0 616.0 GasA ... Y SBrkr 616 616 0 1232 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1920.0 Unf 2.0 480.0 Fa Fa Y 280 0 143 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2449 2450 50 RM 56.0 8398 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 6 8 1910 1990 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock Gd Gd No BLQ 259.0 Unf 0.0 667.0 926.0 GasA ... Y SBrkr 991 659 0 1650 0.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Detchd 1979.0 Unf 2.0 468.0 TA TA N 128 103 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal NaN
2450 2451 70 RM 60.0 3600 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 5 7 1930 2005 Gambrel CompShg VinylSd VinylSd None 0.0 TA Gd BrkTil TA Fa No Rec 316.0 Unf 0.0 371.0 687.0 GasA ... Y SBrkr 687 671 0 1358 0.0 0.0 1 1 3 1 Gd 6 Typ 1 Gd Detchd 2004.0 Unf 1.0 336.0 TA TA Y 0 32 0 0 0 0 NaN MnPrv NaN 0 7 2007 WD Partial NaN
2451 2452 75 RM 75.0 13500 Pave Grvl Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 2.5Unf 7 8 1879 1987 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd PConc TA TA No Unf 0.0 Unf 0.0 819.0 819.0 GasA ... Y FuseA 1312 1142 0 2454 0.0 0.0 2 0 3 1 TA 8 Typ 1 Gd Attchd 1950.0 Unf 2.0 576.0 TA TA N 0 148 150 0 0 0 NaN MnPrv NaN 0 2 2007 WD Normal NaN
2452 2453 20 RM 52.0 8626 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 4 6 1956 1956 Gable CompShg MetalSd MetalSd None 1.0 TA TA CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 968 0 0 968 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1956.0 Unf 1.0 331.0 Fa TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2453 2454 80 RM 76.0 11800 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam SLvl 4 7 1949 2002 Gable CompShg Stucco Wd Sdng None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1382 0 0 1382 0.0 0.0 2 0 1 1 TA 6 Mod 1 TA Attchd 1957.0 RFn 1.0 384.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2454 2455 40 RL 55.0 6854 Pave NaN Reg Bnk AllPub Inside Mod BrkSide Norm Norm 1Fam 1Story 5 7 1925 1994 Gable CompShg MetalSd MetalSd None 0.0 TA Gd PConc TA TA No LwQ 317.0 Rec 227.0 212.0 756.0 GasA ... N FuseA 916 144 0 1060 1.0 0.0 1 0 1 1 TA 6 Mod 1 Gd Detchd 1969.0 Unf 1.0 308.0 Fa TA Y 0 65 0 0 150 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2455 2456 50 RM 55.0 8674 Pave NaN Reg HLS AllPub Inside Gtl BrkSide RRNn Artery 1Fam 1.5Fin 5 6 1950 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Fa TA No Rec 910.0 Unf 0.0 0.0 910.0 GasA ... Y SBrkr 910 525 0 1435 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1950.0 Unf 1.0 308.0 TA TA Y 0 33 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2456 2457 50 RM 50.0 6125 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 7 1939 1998 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No Rec 306.0 Unf 0.0 422.0 728.0 GasA ... Y SBrkr 728 546 0 1274 0.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Detchd 1939.0 Unf 1.0 224.0 Fa TA Y 0 0 192 0 0 0 NaN NaN NaN 0 3 2007 CWD Normal NaN
2457 2458 70 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 2Story 6 6 1939 1950 Gable CompShg MetalSd VinylSd None 0.0 TA TA CBlock TA TA Mn Rec 276.0 Unf 0.0 324.0 600.0 GasA ... Y SBrkr 608 624 0 1232 0.0 0.0 1 1 3 1 TA 6 Typ 2 TA Attchd 1939.0 Unf 1.0 217.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 2 2007 WD Normal NaN
2458 2459 45 RM 51.0 6120 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Unf 5 7 1939 1950 Gable CompShg AsbShng AsbShng None 0.0 Gd TA BrkTil TA TA No Unf 0.0 Unf 0.0 884.0 884.0 GasA ... Y SBrkr 884 0 0 884 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1939.0 Unf 1.0 240.0 TA TA Y 0 0 136 0 0 0 NaN MnPrv NaN 0 7 2007 WD Normal NaN
2459 2460 50 RM NaN 6240 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 5 1938 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA BrkTil TA TA No LwQ 52.0 Unf 0.0 809.0 861.0 GasA ... Y SBrkr 861 548 0 1409 1.0 0.0 1 1 3 1 TA 6 Typ 1 Gd Detchd 1968.0 Unf 2.0 528.0 TA TA Y 225 0 84 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2460 2461 50 RM 52.0 6240 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 8 1939 1952 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd BrkTil TA TA No Rec 48.0 Unf 0.0 624.0 672.0 GasA ... Y SBrkr 899 423 0 1322 1.0 0.0 1 0 4 1 TA 7 Typ 0 NaN Detchd 1939.0 Unf 1.0 280.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 7 2007 WD Normal NaN
2461 2462 50 RM 52.0 6240 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 7 1930 1992 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 966.0 966.0 GasA ... Y SBrkr 1014 412 0 1426 0.0 0.0 1 0 3 1 TA 6 Typ 1 Gd Detchd 1930.0 Unf 1.0 230.0 Fa TA Y 174 0 96 0 0 0 NaN GdPrv NaN 0 7 2007 WD Normal NaN
2462 2463 50 RM 51.0 6120 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 6 1926 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No ALQ 351.0 Unf 0.0 405.0 756.0 GasA ... Y FuseA 903 378 0 1281 1.0 0.0 1 0 2 1 Gd 6 Typ 0 NaN Detchd 1926.0 Unf 2.0 379.0 TA TA Y 25 0 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2463 2464 70 RM 47.0 7755 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 6 8 1918 1995 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd CBlock TA TA No Unf 0.0 Unf 0.0 1100.0 1100.0 GasA ... Y FuseA 1100 1164 0 2264 0.0 0.0 2 1 4 1 TA 8 Typ 0 NaN Detchd 1950.0 Unf 1.0 408.0 TA TA Y 0 152 0 0 0 0 NaN MnPrv NaN 0 5 2007 WD Normal NaN
2464 2465 50 RL 60.0 8850 Pave Pave Reg Bnk AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 6 7 1920 1950 Gable CompShg Wd Sdng Wd Shng None 0.0 TA Gd PConc TA TA No Unf 0.0 Unf 0.0 768.0 768.0 GasA ... Y SBrkr 752 624 0 1376 0.0 0.0 1 0 3 1 Gd 7 Typ 0 NaN Detchd 1977.0 Unf 2.0 576.0 TA TA P 0 54 144 0 0 0 NaN NaN NaN 0 2 2007 WD Normal NaN
2465 2466 50 RL 60.0 8550 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide RRAn Norm 1Fam 1.5Fin 5 5 1926 1950 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Fa TA No Unf 0.0 Unf 0.0 750.0 750.0 GasA ... Y SBrkr 960 356 0 1316 0.0 0.0 1 0 4 1 TA 7 Typ 0 NaN Detchd 1965.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2007 ConLw Family NaN
2466 2467 70 RM NaN 5700 Pave NaN IR1 Lvl AllPub Corner Gtl OldTown Feedr Norm 1Fam 2Story 7 6 1929 1990 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA BrkTil TA TA No Rec 336.0 Unf 0.0 336.0 672.0 GasA ... N FuseA 672 672 0 1344 1.0 0.0 1 1 3 1 Gd 6 Typ 1 Gd Attchd 1979.0 Unf 2.0 456.0 TA TA Y 0 0 70 0 0 0 NaN GdPrv NaN 0 9 2007 WD Normal NaN
2467 2468 45 RM 40.0 5680 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 4 1901 1950 Gable CompShg AsbShng AsbShng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 592.0 592.0 GasA ... N FuseA 933 240 0 1173 0.0 0.0 2 0 3 1 TA 7 Typ 0 NaN Detchd 1920.0 Unf 1.0 240.0 TA Fa Y 0 25 77 0 0 0 NaN MnPrv NaN 0 9 2007 WD AdjLand NaN
2468 2469 50 RM 40.0 5680 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 3 1901 1950 Gable CompShg AsbShng AsbShng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 969.0 969.0 GasA ... N FuseA 969 245 0 1214 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1920.0 Unf 1.0 216.0 TA TA N 0 0 77 0 0 0 NaN MnPrv NaN 0 9 2007 WD AdjLand NaN
2469 2470 80 RM 120.0 13200 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Norm Norm 1Fam SLvl 6 6 1963 1963 Gable CompShg HdBoard HdBoard BrkFace 234.0 TA TA CBlock TA TA No BLQ 375.0 Unf 0.0 366.0 741.0 GasA ... Y SBrkr 1497 797 0 2294 0.0 0.0 3 0 5 1 TA 9 Typ 1 Gd Attchd 1963.0 Unf 2.0 658.0 TA TA Y 0 110 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2470 2471 60 RM 60.0 9780 Pave Grvl Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 2Story 7 9 1950 2005 Gable CompShg VinylSd VinylSd None 0.0 TA Ex CBlock TA TA No LwQ 354.0 Rec 398.0 224.0 976.0 GasA ... Y SBrkr 976 976 0 1952 0.0 0.0 1 1 4 1 Gd 8 Typ 2 TA Detchd 1950.0 Fin 1.0 299.0 TA TA Y 285 0 0 0 216 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2471 2472 50 RM 60.0 10320 Pave Grvl Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 6 5 1915 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA Fa No LwQ 375.0 Unf 0.0 763.0 1138.0 GasA ... Y SBrkr 1138 1042 0 2180 0.0 0.0 1 1 3 1 TA 7 Typ 1 Gd Detchd 2006.0 Unf 2.0 720.0 TA TA N 0 0 170 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2472 2473 190 RM 52.0 4330 Pave Grvl Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 2fmCon 1.5Fin 4 6 1958 1958 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil Fa TA No Rec 681.0 ALQ 127.0 0.0 808.0 GasA ... Y SBrkr 838 477 0 1315 1.0 0.0 2 0 3 1 TA 5 Typ 0 NaN Detchd 1958.0 RFn 2.0 436.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 2 2007 COD Abnorml NaN
2473 2474 50 RM 60.0 10320 Pave Grvl Reg Lvl AllPub Corner Gtl IDOTRR Artery Norm 1Fam 1.5Fin 4 1 1910 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 Fa Fa CBlock TA Fa No Unf 0.0 Unf 0.0 771.0 771.0 GasA ... Y SBrkr 866 504 114 1484 0.0 0.0 2 0 3 1 TA 6 NaN 0 NaN Detchd 1910.0 Unf 1.0 264.0 TA Fa N 14 211 0 0 84 0 NaN NaN NaN 0 9 2007 COD Abnorml NaN
2474 2475 70 RL 107.0 12888 Pave NaN Reg Bnk AllPub Inside Gtl Sawyer Feedr Norm 1Fam 2Story 7 8 1937 1980 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA Gd CBlock TA TA No ALQ 288.0 Unf 0.0 717.0 1005.0 GasA ... Y SBrkr 1262 1005 0 2267 1.0 0.0 1 1 3 1 TA 7 Typ 2 Gd Attchd 1937.0 Fin 2.0 498.0 TA TA Y 521 0 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2475 2476 190 RL 59.0 4484 Pave NaN IR1 Lvl AllPub Corner Gtl SWISU Norm Norm 2fmCon 1.5Fin 5 6 1942 1979 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No ALQ 485.0 Unf 0.0 187.0 672.0 GasA ... N SBrkr 778 504 0 1282 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1942.0 Unf 1.0 240.0 TA TA Y 0 88 0 0 0 0 NaN MnPrv NaN 0 7 2007 WD Normal NaN
2476 2477 190 RL 75.0 11235 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 2fmCon SFoyer 5 5 1963 1963 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA Av ALQ 925.0 Unf 0.0 0.0 925.0 GasA ... Y SBrkr 999 0 0 999 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1963.0 Unf 1.0 308.0 TA TA Y 40 176 0 0 0 0 NaN MnPrv NaN 0 3 2007 WD Normal NaN
2477 2478 85 RL 75.0 11235 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam SFoyer 5 5 1964 1980 Gable CompShg HdBoard HdBoard BrkFace 30.0 TA TA CBlock Gd TA Av BLQ 785.0 Unf 0.0 635.0 1420.0 GasA ... Y SBrkr 1452 0 0 1452 1.0 0.0 1 0 2 1 TA 6 Min2 1 TA Detchd 1964.0 Unf 2.0 572.0 TA TA Y 92 0 88 0 0 0 NaN NaN NaN 0 11 2007 WD Normal NaN
2478 2479 20 RL 62.0 14299 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Feedr Norm 1Fam 1Story 4 3 1964 1964 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Rec 513.0 LwQ 144.0 348.0 1005.0 GasA ... Y SBrkr 1005 0 0 1005 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1964.0 Unf 2.0 440.0 TA TA N 0 0 0 0 0 0 NaN MnPrv NaN 0 7 2007 WD Normal NaN
2479 2480 80 RL 65.0 14149 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam SLvl 5 8 1964 2001 Hip CompShg HdBoard HdBoard BrkFace 50.0 Gd Gd CBlock TA TA Gd LwQ 68.0 BLQ 722.0 190.0 980.0 GasA ... Y SBrkr 1020 0 0 1020 0.0 1.0 2 0 3 1 TA 5 Typ 1 Po Detchd 1970.0 Unf 2.0 528.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2480 2481 20 RL NaN 11677 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 4 1966 1966 Gable CompShg HdBoard HdBoard BrkFace 442.0 TA TA CBlock TA TA Av Rec 249.0 BLQ 761.0 30.0 1040.0 GasA ... Y SBrkr 1040 0 0 1040 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1966.0 RFn 1.0 264.0 TA TA Y 0 90 0 0 0 0 NaN MnPrv NaN 0 2 2007 WD Normal NaN
2481 2482 190 RL 70.0 8425 Pave NaN Reg Lvl AllPub FR3 Gtl Sawyer Feedr Norm 2fmCon 1Story 5 6 1971 1990 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA Av GLQ 748.0 Unf 0.0 20.0 768.0 GasA ... Y SBrkr 868 0 0 868 1.0 0.0 1 0 2 1 TA 6 Typ 0 NaN Detchd 1989.0 Unf 2.0 576.0 TA TA Y 138 0 0 0 0 0 NaN GdPrv NaN 0 5 2007 WD Normal NaN
2482 2483 20 RL 86.0 8665 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1968 1968 Gable CompShg HdBoard HdBoard BrkFace 89.0 TA TA CBlock TA TA Mn Rec 168.0 BLQ 288.0 420.0 876.0 GasA ... Y SBrkr 897 0 0 897 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1968.0 RFn 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 1 2007 WD Normal NaN
2483 2484 20 RL NaN 8398 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1967 1967 Gable CompShg MetalSd MetalSd BrkFace 323.0 TA Gd CBlock TA TA No LwQ 114.0 BLQ 529.0 300.0 943.0 GasA ... Y SBrkr 943 0 0 943 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1972.0 Unf 2.0 528.0 TA TA Y 132 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2484 2485 20 RL NaN 8169 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Feedr Norm 1Fam 1Story 5 7 1966 1966 Gable CompShg Plywood Plywood None 0.0 TA Gd CBlock TA TA No Rec 216.0 ALQ 435.0 261.0 912.0 GasA ... Y SBrkr 912 0 0 912 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Detchd 1966.0 Unf 1.0 315.0 TA TA Y 204 0 0 0 0 0 NaN MnPrv NaN 0 7 2007 WD Normal NaN
2485 2486 20 RL 81.0 14175 Pave NaN Reg Bnk AllPub Inside Mod Sawyer PosA Norm 1Fam 1Story 5 5 1956 1998 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No Rec 386.0 ALQ 522.0 332.0 1240.0 GasA ... Y SBrkr 1375 0 0 1375 1.0 0.0 1 0 3 1 TA 6 Typ 1 Gd Attchd 1956.0 Unf 1.0 323.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 12 2007 WD Normal NaN
2486 2487 60 RL 99.0 16779 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Feedr Norm 1Fam 2Story 5 4 1920 1996 Gable CompShg Wd Sdng Wd Sdng BrkFace 356.0 TA Fa CBlock Gd TA No BLQ 267.0 Unf 0.0 404.0 671.0 GasA ... Y SBrkr 1567 1087 0 2654 0.0 0.0 3 0 4 1 TA 11 Mod 1 Gd Attchd 1946.0 Unf 2.0 638.0 TA TA Y 128 570 0 0 0 0 NaN NaN Shed 500 5 2007 WD Normal NaN
2487 2488 50 RL 70.0 6960 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1.5Fin 7 8 1940 1998 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No ALQ 258.0 Unf 0.0 422.0 680.0 GasA ... Y FuseA 798 504 0 1302 0.0 0.0 1 1 2 1 Gd 6 Typ 2 Gd Attchd 1940.0 Unf 1.0 224.0 TA TA Y 0 0 0 0 126 0 NaN MnPrv NaN 0 7 2007 WD Normal NaN
2488 2489 20 RL 91.0 11375 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 6 5 1954 1995 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No Rec 736.0 Unf 0.0 231.0 967.0 GasA ... Y SBrkr 1299 0 0 1299 0.0 0.0 1 0 3 1 Gd 6 Typ 1 TA Attchd 1954.0 Unf 2.0 494.0 TA TA Y 81 0 280 0 0 0 NaN NaN NaN 0 10 2007 WD Normal NaN
2489 2490 20 RL 85.0 13770 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Feedr Norm 1Fam 1Story 5 6 1958 1998 Gable CompShg Plywood Plywood BrkFace 340.0 TA TA CBlock TA TA Mn Rec 190.0 BLQ 873.0 95.0 1158.0 GasA ... Y SBrkr 1176 0 0 1176 1.0 0.0 1 0 3 1 TA 6 Typ 2 Gd Attchd 1958.0 Unf 1.0 303.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2007 NaN Normal NaN
2490 2491 20 RL NaN 9000 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 4 7 1945 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 Fa TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N FuseA 998 0 0 998 0.0 0.0 1 0 3 1 TA 5 Min2 0 NaN 2Types 1952.0 Unf 2.0 460.0 Fa TA Y 0 0 140 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2491 2492 20 RL NaN 11075 Pave NaN Reg Lvl AllPub Corner Gtl ClearCr Norm Norm 1Fam 1Story 6 5 1984 1984 Hip CompShg Wd Sdng Wd Sdng BrkFace 136.0 TA TA PConc Gd TA No BLQ 299.0 LwQ 891.0 0.0 1190.0 GasA ... Y SBrkr 1522 0 0 1522 0.0 0.0 2 0 3 1 TA 7 Typ 1 TA Attchd 1984.0 Fin 2.0 552.0 TA TA Y 0 77 0 0 168 0 NaN GdPrv NaN 0 2 2007 WD Normal NaN
2492 2493 20 RL NaN 17541 Pave NaN IR1 Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 1Story 5 7 1948 2005 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA Gd CBlock TA Gd Mn BLQ 300.0 Unf 0.0 109.0 409.0 GasA ... Y SBrkr 1325 0 0 1325 0.0 0.0 2 0 3 1 Gd 6 Typ 1 TA Detchd 1996.0 Unf 2.0 576.0 TA TA Y 0 42 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2493 2494 20 RL NaN 22692 Pave NaN IR1 Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 5 1953 1953 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 587.0 Unf 0.0 486.0 1073.0 GasA ... Y SBrkr 1630 0 0 1630 0.0 0.0 2 0 3 1 TA 6 Mod 1 TA Detchd 1953.0 Unf 2.0 649.0 TA TA P 0 64 0 0 0 0 NaN NaN NaN 0 3 2007 COD Normal NaN
2494 2495 20 RL 84.0 17808 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Feedr Norm 1Fam 1Story 4 5 1946 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 484.0 484.0 GasA ... N SBrkr 1242 0 0 1242 0.0 0.0 1 0 2 1 TA 4 Mod 0 NaN Attchd 1946.0 Unf 1.0 336.0 TA TA N 0 0 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2495 2496 20 RL 102.0 12671 Pave NaN IR1 Lvl AllPub Corner Gtl ClearCr Norm Norm 1Fam 1Story 6 7 1954 1994 Hip CompShg MetalSd MetalSd Stone 300.0 TA Gd CBlock Gd Fa No LwQ 353.0 Unf 0.0 935.0 1288.0 GasA ... Y SBrkr 2422 0 0 2422 0.0 0.0 3 0 4 1 Gd 6 Min2 2 Gd Attchd 1954.0 Fin 2.0 527.0 TA TA Y 0 63 0 0 144 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2496 2497 50 RL 70.0 10512 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 6 6 1954 1954 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No BLQ 491.0 Unf 0.0 497.0 988.0 GasA ... Y SBrkr 988 638 0 1626 0.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN Attchd 1954.0 Unf 1.0 332.0 TA TA Y 366 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2497 2498 20 RL 60.0 5400 Pave NaN Reg HLS AllPub Inside Gtl SWISU Norm Norm 1Fam 1Story 5 5 1958 1958 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 453.0 Unf 0.0 411.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 1.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1958.0 Unf 1.0 399.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2498 2499 30 RL NaN 11515 Pave NaN IR1 Lvl AllPub CulDSac Gtl Edwards Norm Norm 1Fam 1Story 4 5 1958 1994 Gable CompShg HdBoard HdBoard None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N SBrkr 943 0 0 943 0.0 0.0 1 0 3 1 Gd 5 Min2 0 NaN Detchd 1958.0 Unf 1.0 308.0 TA TA N 0 0 60 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2499 2500 120 RL 39.0 3869 Pave NaN Reg Lvl AllPub Inside Mod Edwards Norm Norm TwnhsE 1Story 5 6 1984 1984 Gable CompShg Wd Sdng Wd Sdng BrkFace 149.0 Gd Ex CBlock TA TA No LwQ 283.0 GLQ 755.0 0.0 1038.0 GasA ... Y SBrkr 1038 0 0 1038 0.0 0.0 2 0 2 1 TA 5 Typ 0 NaN Attchd 1984.0 RFn 1.0 264.0 TA TA Y 0 105 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2500 2501 20 RL 58.0 9280 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 6 1951 1951 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock Fa TA No ALQ 557.0 Unf 0.0 785.0 1342.0 GasA ... Y SBrkr 1342 0 0 1342 1.0 0.0 1 0 4 1 TA 7 Typ 0 NaN Detchd 1951.0 Unf 1.0 256.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2501 2502 50 RL 60.0 11100 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 5 6 1951 1994 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA Mn LwQ 1080.0 Unf 0.0 0.0 1080.0 GasA ... N SBrkr 1080 400 0 1480 1.0 0.0 1 0 4 1 TA 7 Typ 1 Gd Attchd 1951.0 Unf 1.0 253.0 TA TA Y 0 0 68 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2502 2503 50 RL 50.0 7550 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 4 5 1920 1950 Gambrel CompShg MetalSd MetalSd None 0.0 Fa Fa BrkTil TA Fa No Unf 0.0 Unf 0.0 951.0 951.0 GasW ... N SBrkr 986 376 0 1362 0.0 0.0 2 0 4 1 TA 7 Typ 0 NaN Detchd 1920.0 Unf 1.0 280.0 Fa TA P 0 0 0 0 0 0 NaN MnPrv NaN 0 3 2007 WD Normal NaN
2503 2504 50 RL 104.0 23920 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Feedr Norm 1Fam 1.5Fin 6 5 1984 1984 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1105.0 1105.0 GasA ... Y SBrkr 1105 717 0 1822 0.0 0.0 2 0 4 1 Gd 7 Min2 1 Po Attchd 1984.0 Unf 2.0 515.0 TA TA P 0 195 1012 0 0 444 NaN NaN NaN 0 4 2007 WD Normal NaN
2504 2505 60 RL 75.0 9317 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 7 5 1994 2001 Gable CompShg VinylSd VinylSd None 0.0 Gd Gd PConc Gd Gd No GLQ 497.0 Unf 0.0 282.0 779.0 GasA ... Y SBrkr 1029 929 0 1958 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1994.0 RFn 2.0 499.0 TA TA Y 202 93 0 0 0 0 NaN NaN NaN 0 7 2007 CWD Normal NaN
2505 2506 20 RL 71.0 9178 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 306.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1643.0 1643.0 GasA ... Y SBrkr 1651 0 0 1651 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2007.0 Fin 3.0 870.0 TA TA Y 204 64 0 0 0 0 NaN NaN NaN 0 9 2007 New Partial NaN
2506 2507 20 RL 93.0 10481 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2006 2007 Hip CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 2140.0 2140.0 GasA ... Y SBrkr 2140 0 0 2140 0.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 2006.0 Fin 3.0 894.0 TA TA Y 136 32 0 0 0 0 NaN NaN NaN 0 6 2007 New Partial NaN
2507 2508 20 RL 66.0 10235 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2007 2007 Gable CompShg VinylSd VinylSd Stone 306.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1643.0 1643.0 GasA ... Y SBrkr 1651 0 0 1651 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2007.0 RFn 3.0 870.0 TA TA Y 192 64 0 0 0 0 NaN NaN NaN 0 9 2007 New Partial NaN
2508 2509 20 RL 75.0 11750 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 204.0 Gd TA PConc Gd TA Mn GLQ 20.0 Unf 0.0 1526.0 1546.0 GasA ... Y SBrkr 1546 0 0 1546 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2005.0 RFn 3.0 796.0 TA TA Y 144 42 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2509 2510 20 RL 73.0 8760 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd BrkFace 132.0 Gd TA PConc Gd TA No GLQ 36.0 Unf 0.0 1453.0 1489.0 GasA ... Y SBrkr 1500 0 0 1500 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2005.0 RFn 2.0 674.0 TA TA Y 144 38 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2510 2511 20 RL 64.0 7242 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1270.0 1270.0 GasA ... Y SBrkr 1270 0 0 1270 0.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 2005.0 RFn 2.0 524.0 TA TA Y 0 96 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2511 2512 60 RL 78.0 9316 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Gd Unf 0.0 Unf 0.0 879.0 879.0 GasA ... Y SBrkr 879 916 0 1795 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2005.0 RFn 2.0 578.0 TA TA Y 164 111 0 0 0 0 NaN NaN NaN 0 10 2007 WD Normal NaN
2512 2513 60 RL NaN 8883 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 7 5 1988 1988 Gable CompShg HdBoard HdBoard BrkFace 360.0 Gd TA PConc Gd TA No GLQ 608.0 LwQ 321.0 0.0 929.0 GasA ... Y SBrkr 946 927 0 1873 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1988.0 RFn 2.0 619.0 TA TA Y 108 48 0 0 144 0 NaN GdPrv NaN 0 5 2007 WD Normal NaN
2513 2514 20 RL 155.0 20064 Pave NaN IR1 Low AllPub Inside Sev ClearCr Norm Norm 1Fam 1Story 8 6 1976 1976 Shed WdShngl Wd Sdng Wd Sdng None 0.0 Gd TA CBlock Gd Gd Gd LwQ 51.0 GLQ 915.0 0.0 966.0 GasA ... Y SBrkr 1743 0 0 1743 2.0 0.0 0 1 0 1 Gd 5 Typ 2 Fa Attchd 1976.0 Fin 2.0 529.0 TA TA Y 646 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2514 2515 20 RL NaN 14217 Pave NaN IR2 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 1Story 5 5 1994 1994 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No ALQ 550.0 Unf 0.0 472.0 1022.0 GasA ... Y SBrkr 1022 0 0 1022 0.0 1.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1995.0 Unf 2.0 747.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2515 2516 60 RL 57.0 10021 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 6 6 1997 2006 Gable CompShg VinylSd VinylSd None 0.0 TA Gd PConc Gd TA No GLQ 539.0 Unf 0.0 96.0 635.0 GasA ... Y SBrkr 646 662 0 1308 1.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 1997.0 RFn 2.0 497.0 TA TA Y 142 54 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2516 2517 20 RL 60.0 8428 Pave NaN IR2 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 7 1994 1994 Gable CompShg VinylSd VinylSd None 0.0 TA Gd PConc Gd Gd No GLQ 420.0 Unf 0.0 570.0 990.0 GasA ... Y SBrkr 990 0 0 990 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1995.0 Unf 1.0 384.0 TA TA Y 256 0 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2517 2518 20 RL 70.0 16561 Pave NaN IR2 Low AllPub Inside Mod CollgCr Norm Norm 1Fam 1Story 5 5 1996 1996 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No ALQ 549.0 Unf 0.0 548.0 1097.0 GasA ... Y SBrkr 1097 0 0 1097 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1996.0 Unf 1.0 242.0 TA TA Y 306 0 0 0 0 0 NaN GdPrv NaN 0 7 2007 WD Normal NaN
2518 2519 60 RL 47.0 10820 Pave NaN IR2 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1999 1999 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Gd GLQ 342.0 Unf 0.0 646.0 988.0 GasA ... Y SBrkr 988 885 0 1873 0.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1999.0 RFn 2.0 597.0 TA TA Y 202 123 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2519 2520 60 RL 43.0 12352 Pave NaN IR2 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1998 1999 Gable CompShg VinylSd VinylSd BrkFace 290.0 Gd TA PConc Gd TA No GLQ 638.0 Unf 0.0 215.0 853.0 GasA ... Y SBrkr 853 900 0 1753 1.0 0.0 2 1 3 1 TA 7 Typ 1 Fa Attchd 1998.0 RFn 2.0 534.0 TA TA Y 0 74 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2520 2521 60 RL 68.0 9543 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2001 2001 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 845.0 845.0 GasA ... Y SBrkr 845 845 0 1690 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2001.0 RFn 2.0 517.0 TA TA Y 0 103 0 0 0 0 NaN NaN NaN 0 2 2007 WD Normal NaN
2521 2522 60 RL NaN 8826 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2000 2000 Gable CompShg VinylSd VinylSd BrkFace 144.0 Gd TA PConc Gd TA No GLQ 841.0 Unf 0.0 144.0 985.0 GasA ... Y SBrkr 985 857 0 1842 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 2000.0 Fin 2.0 486.0 TA TA Y 193 96 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2522 2523 20 RL 97.0 11800 Pave NaN IR1 Bnk AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 5 1974 1974 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA Av BLQ 663.0 Unf 0.0 201.0 864.0 GasA ... Y SBrkr 894 0 0 894 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1974.0 Unf 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2007 WD Family NaN
2523 2524 80 RL 59.0 8660 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam SLvl 5 5 1976 1976 Gable CompShg VinylSd VinylSd BrkFace 113.0 TA Gd CBlock Gd TA Av GLQ 502.0 Unf 0.0 513.0 1015.0 GasA ... Y SBrkr 1025 0 0 1025 0.0 0.0 2 0 3 1 TA 6 Typ 1 Fa Detchd 1979.0 Unf 2.0 370.0 TA TA Y 127 0 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2524 2525 80 RL 72.0 9720 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam SLvl 5 7 1977 1977 Gable CompShg Plywood VinylSd BrkFace 51.0 TA TA CBlock TA NaN Av ALQ 755.0 Unf 0.0 240.0 995.0 GasA ... Y SBrkr 1009 0 0 1009 0.0 0.0 2 0 3 1 TA 6 Typ 1 Fa Detchd 1977.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 6 2007 WD Normal NaN
2525 2526 20 RL 45.0 8982 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 1Story 5 5 1977 1977 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock Gd TA Av ALQ 539.0 Unf 0.0 501.0 1040.0 GasA ... Y SBrkr 1040 0 0 1040 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Detchd 1977.0 Unf 2.0 748.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 1 2007 WD Normal NaN
2526 2527 20 RL 39.0 16300 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 1Story 5 4 1977 1977 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA Av Rec 60.0 BLQ 417.0 399.0 876.0 GasA ... Y SBrkr 907 0 0 907 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1977.0 RFn 1.0 308.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 1 2007 WD Normal NaN
2527 2528 20 RL 75.0 9675 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 5 6 1975 1975 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No BLQ 330.0 Rec 432.0 102.0 864.0 GasA ... Y SBrkr 879 0 0 879 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1975.0 Unf 2.0 440.0 TA TA Y 0 80 0 0 0 0 NaN NaN NaN 0 9 2007 Con Normal NaN
2528 2529 20 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 5 1972 2000 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No ALQ 671.0 Unf 0.0 193.0 864.0 GasA ... Y SBrkr 864 0 0 864 1.0 0.0 1 0 3 1 Ex 5 Typ 0 NaN Detchd 1977.0 Fin 2.0 576.0 Gd Ex Y 155 0 0 0 0 0 NaN NaN NaN 0 9 2007 WD Normal NaN
2529 2530 20 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 4 8 1972 2006 Gable CompShg Plywood Plywood None 0.0 TA Gd CBlock TA TA No Rec 385.0 Unf 0.0 0.0 385.0 GasA ... Y SBrkr 875 0 0 875 0.0 0.0 1 0 3 1 Gd 5 Typ 0 NaN Detchd 1975.0 Unf 2.0 728.0 TA TA Y 352 0 0 0 0 0 NaN NaN NaN 0 10 2007 WD Normal NaN
2530 2531 20 RL NaN 11354 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2000 2000 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc TA TA Gd GLQ 1412.0 Unf 0.0 261.0 1673.0 GasA ... Y SBrkr 1673 0 0 1673 1.0 0.0 2 0 3 1 Gd 7 Typ 1 TA Attchd 2000.0 RFn 2.0 583.0 TA TA Y 306 113 0 0 116 0 NaN NaN NaN 0 1 2007 WD Normal NaN
2531 2532 60 RL 70.0 8749 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 654.0 Unf 0.0 325.0 979.0 GasA ... Y SBrkr 992 940 0 1932 1.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2003.0 RFn 2.0 610.0 TA TA Y 0 120 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2532 2533 60 RL 65.0 8158 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd BrkFace 214.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 860.0 860.0 GasA ... Y SBrkr 860 869 0 1729 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2002.0 Fin 2.0 542.0 TA TA Y 386 63 0 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2533 2534 20 RL 73.0 11927 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 1994 1995 Hip CompShg HdBoard HdBoard BrkFace 519.0 Gd TA PConc Gd TA Gd BLQ 408.0 GLQ 465.0 683.0 1556.0 GasA ... Y SBrkr 1592 0 0 1592 0.0 0.0 2 0 3 1 Gd 7 Typ 1 TA Attchd 1994.0 Fin 2.0 484.0 TA TA Y 120 35 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2534 2535 60 RL NaN 12728 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 8 5 2001 2001 Gable CompShg VinylSd VinylSd BrkFace 256.0 Gd TA PConc Gd TA Mn GLQ 1198.0 Unf 0.0 333.0 1531.0 GasA ... Y SBrkr 1531 908 0 2439 1.0 0.0 2 1 4 1 Gd 7 Typ 1 TA Attchd 2001.0 Fin 2.0 560.0 TA TA Y 184 121 0 0 0 0 NaN NaN NaN 0 1 2007 WD Normal NaN
2535 2536 60 RL NaN 15295 Pave NaN IR3 Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1996 2002 Gable CompShg VinylSd VinylSd BrkFace 254.0 Gd TA PConc Gd TA Mn GLQ 762.0 Unf 0.0 98.0 860.0 GasA ... Y SBrkr 1212 780 0 1992 1.0 0.0 2 1 3 1 Gd 7 Min2 2 TA Attchd 1996.0 RFn 2.0 608.0 TA TA Y 225 32 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2536 2537 20 RL 73.0 17227 Pave NaN IR2 Lvl AllPub CulDSac Mod CollgCr Norm Norm 1Fam 1Story 8 5 1999 2000 Gable CompShg VinylSd VinylSd BrkFace 158.0 Gd TA PConc Gd TA Gd GLQ 915.0 Unf 0.0 426.0 1341.0 GasA ... Y SBrkr 1341 0 0 1341 1.0 0.0 1 1 1 1 Gd 5 Typ 1 TA Attchd 1999.0 RFn 2.0 482.0 TA TA Y 240 84 0 0 0 0 NaN NaN NaN 0 1 2007 WD Normal NaN
2537 2538 60 RL 70.0 8145 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2007 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 738.0 738.0 GasA ... Y SBrkr 738 738 0 1476 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2007.0 RFn 2.0 552.0 TA TA Y 0 35 0 0 0 0 NaN NaN NaN 0 6 2007 New Partial NaN
2538 2539 20 RL 65.0 8769 Pave NaN Reg Lvl AllPub FR2 Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 709.0 Unf 0.0 460.0 1169.0 GasA ... Y SBrkr 1190 0 0 1190 1.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 2005.0 RFn 2.0 578.0 TA TA Y 100 41 0 0 0 0 NaN NaN NaN 0 10 2007 WD Normal NaN
2539 2540 20 RL 64.0 8334 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 6 5 2006 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1330.0 1330.0 GasA ... Y SBrkr 1330 0 0 1330 0.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2006.0 Fin 2.0 437.0 TA TA Y 0 23 0 0 0 0 NaN NaN NaN 0 7 2007 New Partial NaN
2540 2541 60 RL 64.0 8333 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 738.0 738.0 GasA ... Y SBrkr 738 753 0 1491 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 RFn 2.0 484.0 TA TA Y 100 30 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2541 2542 60 RL 64.0 9045 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 5 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Mn Unf 0.0 Unf 0.0 768.0 768.0 GasA ... Y SBrkr 768 768 0 1536 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2005.0 Fin 2.0 400.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2542 2543 85 RL 75.0 9825 Pave NaN Reg Low AllPub Inside Gtl Edwards Norm Norm 1Fam SFoyer 5 5 1967 1967 Gable CompShg HdBoard HdBoard BrkFace 162.0 TA TA CBlock Gd TA Gd ALQ 936.0 Unf 0.0 0.0 936.0 GasA ... Y SBrkr 936 0 0 936 1.0 0.0 1 0 2 1 TA 4 Typ 1 Fa Attchd 1967.0 Unf 1.0 384.0 TA TA Y 405 0 0 0 0 0 NaN NaN Shed 450 8 2007 WD Abnorml NaN
2543 2544 20 RL 67.0 8308 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 6 1963 1963 Gable CompShg VinylSd VinylSd Stone 20.0 TA Gd CBlock TA TA No BLQ 132.0 LwQ 841.0 115.0 1088.0 GasA ... Y SBrkr 1088 0 0 1088 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 2002.0 Unf 2.0 520.0 TA TA P 0 0 0 0 0 0 NaN NaN NaN 0 6 2007 COD Normal NaN
2544 2545 50 RL 74.0 16287 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 5 6 1925 1950 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA TA No ALQ 130.0 BLQ 105.0 666.0 901.0 GasA ... Y SBrkr 901 450 0 1351 1.0 0.0 1 0 3 1 TA 7 Typ 1 Gd Detchd 1975.0 Unf 2.0 576.0 TA TA N 0 0 43 0 100 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2545 2546 20 RL 80.0 8240 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 6 6 1960 1960 Hip CompShg HdBoard HdBoard Stone 198.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1179.0 1179.0 GasA ... Y SBrkr 1179 0 0 1179 0.0 0.0 1 0 2 1 TA 5 Min2 0 NaN Attchd 1960.0 Fin 2.0 622.0 TA TA P 0 0 0 0 0 0 NaN GdPrv NaN 0 6 2007 WD Normal NaN
2546 2547 80 RL 65.0 6285 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam SLvl 6 6 1976 1976 Gable CompShg HdBoard Plywood None 0.0 TA Fa CBlock TA TA Av GLQ 504.0 Unf 0.0 456.0 960.0 GasA ... Y SBrkr 1044 0 0 1044 1.0 0.0 1 0 3 1 TA 7 Typ 1 Fa Detchd 1976.0 Unf 2.0 528.0 TA Fa Y 228 0 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2547 2548 90 RL NaN 9555 Pave NaN IR1 Lvl AllPub CulDSac Gtl Edwards Norm Norm Duplex 2Story 5 6 1979 1979 Gable CompShg Plywood Plywood None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1100 1133 0 2233 0.0 0.0 2 1 5 2 TA 11 Typ 0 NaN Attchd 1979.0 Fin 2.0 579.0 TA Gd Y 0 0 0 0 0 0 NaN NaN NaN 0 2 2007 WD Normal NaN
2548 2549 60 RL 60.0 7023 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 2Story 5 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd Gd No GLQ 611.0 Unf 0.0 123.0 734.0 GasA ... Y SBrkr 734 674 0 1408 1.0 0.0 2 1 3 1 TA 6 Typ 0 NaN BuiltIn 2005.0 Fin 2.0 489.0 TA TA Y 0 85 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2549 2550 20 RL 128.0 39290 Pave NaN IR1 Bnk AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 10 5 2008 2009 Hip CompShg CemntBd CmentBd Stone 1224.0 Ex TA PConc Ex TA Gd GLQ 4010.0 Unf 0.0 1085.0 5095.0 GasA ... Y SBrkr 5095 0 0 5095 1.0 1.0 2 1 2 1 Ex 15 Typ 2 Gd Attchd 2008.0 Fin 3.0 1154.0 TA TA Y 546 484 0 0 0 0 NaN NaN NaN 17000 10 2007 New Partial NaN
2550 2551 180 RM 35.0 3675 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm TwnhsE SFoyer 6 5 2005 2005 Gable CompShg VinylSd VinylSd Stone 76.0 TA TA PConc Gd TA Gd GLQ 467.0 Unf 0.0 80.0 547.0 GasA ... Y SBrkr 1072 0 0 1072 1.0 0.0 1 0 2 1 Gd 5 Typ 0 NaN Basment 2005.0 Fin 2.0 525.0 TA TA Y 0 44 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2551 2552 20 RL 64.0 6400 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 7 1959 2000 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA TA Av Rec 77.0 ALQ 831.0 52.0 960.0 GasA ... Y SBrkr 960 0 0 960 1.0 0.0 1 0 2 1 Fa 4 Typ 0 NaN Detchd 1959.0 Unf 1.0 392.0 TA TA Y 144 0 35 0 0 0 NaN NaN NaN 0 12 2007 WD Normal NaN
2552 2553 90 RL 74.0 6882 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm Duplex 1Story 4 3 1955 1955 Gable CompShg AsbShng Plywood BrkCmn 128.0 TA TA PConc NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N SBrkr 1152 0 0 1152 0.0 0.0 2 0 2 2 Fa 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 0 0 0 0 NaN NaN NaN 0 9 2007 WD Normal NaN
2553 2554 90 RL 52.0 8741 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm Duplex 1Story 5 6 1946 1950 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1195.0 1195.0 GasA ... N SBrkr 1195 0 0 1195 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 118 0 0 0 0 0 NaN GdWo NaN 0 7 2007 WD Abnorml NaN
2554 2555 40 RL 62.0 10042 Pave NaN Reg Bnk AllPub Corner Gtl Edwards Norm Norm 1Fam 1.5Fin 6 8 1920 1995 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No LwQ 144.0 ALQ 278.0 238.0 660.0 GasA ... Y SBrkr 740 125 0 865 1.0 0.0 1 0 2 1 TA 4 Typ 1 Gd Detchd 1920.0 Unf 1.0 216.0 TA TA Y 0 0 84 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2555 2556 20 RL 60.0 8172 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 5 1955 1955 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No BLQ 544.0 Unf 0.0 224.0 768.0 GasA ... Y SBrkr 768 0 0 768 0.0 0.0 1 0 2 1 TA 4 Typ 1 Fa Detchd 1959.0 Unf 1.0 355.0 TA TA Y 0 0 196 0 0 0 NaN MnPrv NaN 0 7 2007 WD Normal NaN
2556 2557 20 RL 60.0 8172 Pave NaN Reg HLS AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 5 1955 1955 Gable CompShg WdShing Plywood None 0.0 TA TA CBlock TA TA No ALQ 682.0 Unf 0.0 182.0 864.0 GasA ... Y SBrkr 864 0 0 864 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1996.0 Unf 2.0 528.0 TA TA N 196 0 0 0 0 0 NaN NaN NaN 0 10 2007 COD Family NaN
2557 2558 90 RL 60.0 10890 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Norm Norm Duplex 2Story 5 6 1923 1950 Hip CompShg Wd Sdng Plywood None 0.0 TA TA PConc TA TA Mn Rec 371.0 Unf 0.0 925.0 1296.0 Grav ... N FuseA 1296 1296 0 2592 2.0 0.0 2 0 6 2 TA 12 Min2 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 742 240 0 0 0 NaN NaN Shed 1512 1 2007 WD AdjLand NaN
2558 2559 30 RL 54.0 7223 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 5 5 1926 1950 Hip CompShg Stucco Plywood None 0.0 TA TA PConc TA TA Mn BLQ 319.0 Unf 0.0 971.0 1290.0 GasA ... Y SBrkr 1422 0 0 1422 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1973.0 Unf 1.0 352.0 TA TA Y 0 0 64 0 0 0 NaN MnPrv NaN 0 4 2007 WD Normal NaN
2559 2560 50 RL 51.0 6821 Pave NaN Reg HLS AllPub Inside Gtl Crawfor Norm Norm 1Fam 1.5Fin 6 7 1921 2005 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No BLQ 113.0 Unf 0.0 538.0 651.0 GasA ... Y SBrkr 759 539 0 1298 0.0 0.0 2 0 2 1 TA 8 Typ 1 Gd Detchd 1994.0 Unf 1.0 240.0 TA TA P 216 0 168 0 0 0 NaN NaN NaN 0 8 2007 WD Normal NaN
2560 2561 70 RL 63.0 4000 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 7 8 1930 1995 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Gd TA No GLQ 246.0 Unf 0.0 285.0 531.0 GasA ... Y SBrkr 567 531 0 1098 1.0 0.0 1 0 2 1 TA 5 Typ 1 Gd Detchd 1930.0 Unf 1.0 216.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 6 2007 WD Normal NaN
2561 2562 70 RL 53.0 6720 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 6 7 1921 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 585.0 585.0 GasA ... N SBrkr 851 585 0 1436 0.0 0.0 1 0 3 1 TA 7 Typ 1 Gd Detchd 1992.0 Unf 1.0 228.0 TA TA Y 184 0 0 0 0 0 NaN NaN NaN 0 4 2007 CWD Normal NaN
2562 2563 70 RL 53.0 7155 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 6 8 1926 1991 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 686.0 686.0 GasA ... Y SBrkr 686 775 0 1461 0.0 0.0 1 0 3 1 TA 6 Typ 1 Gd Detchd 1926.0 Unf 1.0 225.0 TA TA N 0 0 116 0 0 0 NaN MnPrv NaN 0 7 2007 WD Normal NaN
2563 2564 70 RL 60.0 7230 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2.5Unf 7 7 1927 1992 Gable CompShg VinylSd VinylSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 851.0 851.0 GasA ... Y SBrkr 867 851 0 1718 0.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Detchd 1927.0 Unf 2.0 264.0 TA TA Y 291 0 60 0 153 0 NaN GdPrv NaN 0 10 2007 WD Normal NaN
2564 2565 20 RL 126.0 13108 Pave NaN IR2 HLS AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 5 5 1951 1951 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1226 0 0 1226 0.0 0.0 1 1 2 1 TA 7 Min1 1 Gd Attchd 1951.0 Fin 2.0 400.0 TA TA Y 174 24 120 0 228 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2565 2566 50 RL 110.0 7810 Pave NaN IR1 HLS AllPub Inside Gtl Crawfor Norm Norm 1Fam 1.5Fin 4 6 1930 2003 Gable CompShg AsbShng CmentBd None 0.0 TA Gd BrkTil TA Gd No GLQ 189.0 Unf 0.0 741.0 930.0 GasA ... Y SBrkr 1230 525 0 1755 0.0 0.0 2 0 4 1 Gd 7 Typ 1 TA Detchd 1930.0 Unf 1.0 231.0 Fa TA Y 0 40 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal NaN
2566 2567 190 RL 79.0 6221 Pave NaN IR1 Lvl AllPub Inside Gtl Crawfor Norm Norm 2fmCon 1.5Fin 5 5 1941 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA Fa No LwQ 533.0 Unf 0.0 195.0 728.0 GasA ... Y SBrkr 760 595 0 1355 0.0 0.0 2 0 3 1 TA 5 Typ 0 NaN Detchd 1966.0 Unf 2.0 528.0 TA TA Y 0 0 0 0 144 0 NaN MnPrv NaN 0 10 2007 WD Normal NaN
2567 2568 20 RL NaN 25485 Pave NaN IR1 Lvl AllPub CulDSac Gtl Crawfor Norm Norm 1Fam 1Story 6 4 1960 1960 Gable CompShg Wd Sdng MetalSd BrkFace 423.0 TA Fa CBlock TA Gd Mn LwQ 540.0 Rec 1020.0 0.0 1560.0 GasA ... Y SBrkr 1560 0 0 1560 0.0 0.0 1 1 3 1 TA 6 Typ 3 TA Attchd 1960.0 RFn 2.0 580.0 TA TA Y 0 75 584 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2568 2569 20 RL NaN 21579 Pave NaN IR1 Lvl AllPub CulDSac Gtl Crawfor Norm Norm 1Fam 1Story 6 6 1968 1968 Hip CompShg HdBoard BrkFace None 0.0 TA TA PConc Gd TA No BLQ 813.0 Unf 0.0 675.0 1488.0 GasA ... Y SBrkr 1488 0 0 1488 0.0 1.0 2 0 3 1 TA 7 Typ 2 Gd Attchd 1968.0 RFn 2.0 552.0 TA TA Y 0 0 216 0 0 0 NaN NaN NaN 0 9 2007 CWD Normal NaN
2569 2570 160 RM 24.0 1782 Pave NaN Reg Lvl AllPub Inside Gtl Blueste Norm Norm Twnhs 2Story 6 6 1980 1980 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock Gd TA No GLQ 330.0 Unf 0.0 186.0 516.0 GasA ... Y SBrkr 529 516 0 1045 0.0 0.0 1 0 2 1 TA 5 Typ 1 TA Detchd 1980.0 Unf 2.0 462.0 TA TA Y 180 0 0 0 0 0 NaN MnPrv NaN 0 12 2007 WD Normal NaN
2570 2571 20 RL NaN 17871 Pave NaN IR2 Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1Story 4 5 1995 1996 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1680.0 1680.0 GasA ... Y SBrkr 1680 0 0 1680 0.0 0.0 2 0 4 1 Gd 7 Typ 0 NaN Attchd 1996.0 Unf 2.0 628.0 TA TA Y 152 0 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2571 2572 120 RM 35.0 3907 Pave NaN IR1 Bnk AllPub Inside Mod Blueste Norm Norm TwnhsE 1Story 8 5 1988 1988 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA Gd GLQ 577.0 Unf 0.0 427.0 1004.0 GasA ... Y SBrkr 1020 0 0 1020 1.0 0.0 1 0 1 1 TA 4 Typ 0 NaN Attchd 1988.0 Unf 2.0 509.0 TA TA Y 135 0 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2572 2573 20 RL NaN 20693 Pave NaN IR1 Bnk AllPub Corner Gtl Crawfor Norm Norm 1Fam 1Story 7 5 1971 1971 Gable CompShg Plywood Plywood BrkFace 652.0 TA TA CBlock Gd TA No Rec 434.0 Unf 0.0 1262.0 1696.0 GasA ... Y SBrkr 1696 0 0 1696 0.0 0.0 2 0 3 1 TA 7 Typ 2 TA Attchd 1971.0 Fin 2.0 625.0 TA TA Y 0 146 0 0 0 0 NaN GdWo NaN 0 2 2007 WD Normal NaN
2573 2574 20 RL 70.0 18044 Pave NaN IR1 HLS AllPub CulDSac Gtl Crawfor Norm Norm 1Fam 1Story 8 5 1986 1986 Gable CompShg WdShing Plywood None 0.0 Gd TA CBlock Gd TA No Unf 0.0 Unf 0.0 279.0 279.0 GasA ... Y SBrkr 2726 0 0 2726 0.0 0.0 2 1 2 1 Gd 6 Typ 1 Gd Attchd 1986.0 Fin 2.0 691.0 Gd Gd Y 216 64 169 0 0 228 Ex NaN NaN 0 8 2007 WD Normal NaN
2574 2575 50 RM 50.0 7000 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Norm Norm 1Fam 1.5Fin 6 7 1940 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No ALQ 375.0 Unf 0.0 345.0 720.0 GasA ... Y FuseA 720 495 0 1215 0.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Detchd 1965.0 Fin 2.0 720.0 TA TA Y 0 0 30 0 0 0 NaN MnPrv NaN 0 5 2007 WD Normal NaN
2575 2576 50 RM 50.0 7288 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Artery Norm 1Fam 1.5Fin 5 7 1925 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd Gd BrkTil TA Po No Unf 0.0 Unf 0.0 936.0 936.0 GasA ... Y SBrkr 936 665 0 1601 0.0 0.0 2 0 3 1 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 0 176 0 0 NaN NaN NaN 0 9 2007 WD Normal NaN
2576 2577 70 RM 50.0 9060 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 2Story 5 6 1923 1999 Gable CompShg Wd Sdng Plywood None 0.0 TA TA BrkTil Gd TA No ALQ 548.0 Unf 0.0 311.0 859.0 GasA ... Y SBrkr 942 886 0 1828 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Detchd NaN NaN NaN NaN NaN NaN Y 174 0 212 0 0 0 NaN MnPrv NaN 0 3 2007 WD Alloca NaN
2577 2578 30 RM 46.0 3672 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Artery Norm 1Fam 1Story 5 7 1922 1950 Gable CompShg Stucco Stucco None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 816.0 816.0 GasA ... Y SBrkr 816 0 0 816 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1922.0 Unf 1.0 100.0 Fa Fa N 0 0 96 0 0 0 NaN NaN NaN 0 9 2007 WD Normal NaN
2578 2579 50 RM 64.0 11067 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Norm Norm 1Fam 1.5Fin 2 4 1939 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 640 0 205 845 0.0 0.0 1 0 1 1 TA 4 Maj2 0 NaN Detchd 1950.0 Unf 1.0 256.0 TA Fa N 48 0 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2579 2580 190 C (all) 75.0 8250 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Feedr Norm 2fmCon 2Story 5 6 1895 2006 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock TA TA No Unf 0.0 Unf 0.0 957.0 957.0 GasA ... N SBrkr 1034 957 0 1991 0.0 0.0 2 0 4 2 TA 9 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 133 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2580 2581 20 C (all) 65.0 6565 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Norm Norm 1Fam 1Story 4 6 1957 1980 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No GLQ 967.0 Unf 0.0 106.0 1073.0 GasA ... Y FuseA 1073 0 0 1073 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1985.0 Unf 2.0 720.0 TA TA Y 0 444 0 0 0 0 NaN NaN NaN 0 8 2007 WD Abnorml NaN
2581 2582 30 C (all) 60.0 6060 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 5 9 1930 2007 Hip CompShg MetalSd MetalSd None 0.0 Gd TA BrkTil TA TA No ALQ 737.0 Unf 0.0 100.0 837.0 GasA ... Y SBrkr 1001 0 0 1001 0.0 0.0 1 0 2 1 Gd 5 Typ 0 NaN Detchd 1930.0 Unf 1.0 216.0 TA Po N 154 0 42 86 0 0 NaN NaN NaN 0 11 2007 WD Normal NaN
2582 2583 120 RM 59.0 5568 Pave NaN IR1 HLS AllPub Inside Mod Crawfor Norm Norm TwnhsE 1Story 8 5 2006 2007 Hip CompShg CemntBd CmentBd Stone 473.0 Gd TA PConc Gd TA Gd GLQ 1573.0 Unf 0.0 0.0 1573.0 GasA ... Y SBrkr 1625 0 0 1625 1.0 1.0 2 0 2 1 Gd 5 Typ 1 Gd Attchd 2006.0 Fin 2.0 495.0 TA TA Y 123 0 0 0 153 0 NaN NaN NaN 0 10 2007 New Partial NaN
2583 2584 85 RL NaN 12150 Pave NaN IR1 Bnk AllPub CulDSac Gtl Mitchel Norm Norm 1Fam SFoyer 6 6 1979 1979 Gable CompShg HdBoard Wd Shng None 0.0 TA TA CBlock Gd TA Av GLQ 1001.0 Unf 0.0 0.0 1001.0 GasA ... Y SBrkr 1299 0 0 1299 1.0 0.0 2 0 2 1 Gd 5 Typ 1 Po BuiltIn 1979.0 RFn 2.0 486.0 TA TA Y 84 0 222 0 0 0 NaN MnPrv NaN 0 1 2007 WD Normal NaN
2584 2585 20 RL 80.0 10000 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 5 2002 2002 Gable CompShg VinylSd VinylSd BrkFace 166.0 Gd TA PConc Gd TA No GLQ 585.0 Unf 0.0 856.0 1441.0 GasA ... Y SBrkr 1392 0 0 1392 0.0 0.0 2 0 3 1 Gd 6 Typ 1 Gd Attchd 2002.0 Fin 3.0 650.0 TA TA Y 168 49 0 0 0 0 NaN NaN NaN 0 12 2007 WD Normal NaN
2585 2586 20 RL 44.0 12864 Pave NaN IR1 Lvl AllPub CulDSac Gtl Mitchel Norm Norm 1Fam 1Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 1392.0 Unf 0.0 17.0 1409.0 GasA ... Y SBrkr 1409 0 0 1409 1.0 0.0 1 1 1 1 Gd 4 Typ 1 Gd Attchd 2002.0 RFn 2.0 576.0 TA TA Y 0 144 0 0 145 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2586 2587 20 RL NaN 9928 Pave NaN IR1 Lvl AllPub CulDSac Gtl Mitchel Norm Norm 1Fam 1Story 7 5 1991 1992 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No GLQ 1239.0 Unf 0.0 215.0 1454.0 GasA ... Y SBrkr 1478 0 0 1478 1.0 0.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1991.0 Unf 2.0 506.0 TA TA Y 114 22 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2587 2588 80 RL NaN 8750 Pave NaN IR1 Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam SLvl 7 6 1975 1975 Gable CompShg Plywood Plywood Stone 50.0 TA TA CBlock TA TA Av Rec 224.0 GLQ 530.0 98.0 852.0 GasA ... Y SBrkr 918 0 0 918 0.0 1.0 1 0 3 0 TA 4 Typ 0 NaN Attchd 1975.0 Unf 1.0 360.0 TA TA Y 192 84 0 0 0 0 NaN NaN NaN 0 3 2007 WD Normal NaN
2588 2589 85 RL 82.0 8410 Pave NaN IR1 Lvl AllPub Corner Gtl Mitchel Norm Norm 1Fam SFoyer 6 6 1974 1974 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA Av ALQ 924.0 Unf 0.0 46.0 970.0 GasA ... Y SBrkr 1026 0 0 1026 1.0 0.0 1 0 2 1 TA 5 Typ 1 Po Attchd 1974.0 Unf 2.0 528.0 TA TA Y 193 0 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2589 2590 120 RL 46.0 4054 Pave NaN IR1 Lvl AllPub Inside Gtl Timber Norm Norm TwnhsE 1Story 7 6 1987 1987 Gable CompShg VinylSd VinylSd BrkFace 352.0 Gd TA BrkTil Gd TA Av GLQ 949.0 Unf 0.0 552.0 1501.0 GasA ... Y SBrkr 1501 0 0 1501 1.0 0.0 2 0 2 1 Gd 5 Typ 2 TA Attchd 1987.0 Fin 2.0 512.0 TA TA Y 240 0 0 0 0 0 NaN NaN NaN 0 10 2007 WD Normal NaN
2590 2591 20 RL 149.0 19958 Pave NaN Reg Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 6 8 1958 1995 Hip CompShg HdBoard HdBoard BrkFace 1224.0 TA Gd CBlock TA TA No Unf 0.0 Unf 0.0 585.0 585.0 GasA ... Y SBrkr 2279 0 0 2279 0.0 0.0 2 1 4 1 Gd 7 Typ 1 Gd Attchd 1958.0 RFn 2.0 461.0 TA TA Y 274 0 0 0 138 0 NaN GdPrv NaN 0 7 2007 WD Normal NaN
2591 2592 20 RL 67.0 8368 Pave NaN IR1 HLS AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 7 5 2006 2007 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1689.0 1689.0 GasA ... Y SBrkr 1689 0 0 1689 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2007.0 Fin 2.0 433.0 TA TA Y 100 39 0 0 0 0 NaN NaN NaN 0 4 2007 New Partial NaN
2592 2593 20 RL 68.0 8298 Pave NaN IR1 HLS AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2006 2007 Hip CompShg VinylSd VinylSd NaN NaN Gd TA PConc Gd TA Av GLQ 583.0 Unf 0.0 963.0 1546.0 GasA ... Y SBrkr 1564 0 0 1564 0.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2207.0 RFn 2.0 502.0 TA TA Y 132 0 0 0 0 0 NaN NaN NaN 0 9 2007 New Partial NaN
2593 2594 20 RL 42.0 10331 Pave NaN Reg Lvl AllPub CulDSac Gtl Timber Norm Norm 1Fam 1Story 7 7 1985 1985 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA No ALQ 215.0 BLQ 80.0 970.0 1265.0 GasA ... Y SBrkr 1240 0 0 1240 0.0 1.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 1985.0 Unf 2.0 528.0 TA TA Y 232 0 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2594 2595 20 RL NaN 6718 Pave NaN IR1 Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2001 2001 Gable CompShg VinylSd VinylSd BrkFace 86.0 Gd TA PConc Ex TA Mn GLQ 250.0 Unf 0.0 1017.0 1267.0 GasA ... Y SBrkr 1312 0 0 1312 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 2001.0 Unf 2.0 471.0 TA TA Y 256 28 0 0 0 0 NaN NaN NaN 0 1 2007 WD Normal NaN
2595 2596 20 RL 80.0 11305 Pave NaN Reg Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 8 5 2002 2002 Hip CompShg VinylSd VinylSd BrkFace 886.0 Gd TA PConc Gd TA Av GLQ 1329.0 Unf 0.0 593.0 1922.0 GasA ... Y SBrkr 1922 0 0 1922 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Ex Attchd 2002.0 Fin 3.0 692.0 TA TA Y 201 64 0 0 0 0 NaN NaN NaN 0 4 2007 WD Normal NaN
2596 2597 20 RL NaN 7777 Pave NaN IR1 Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 6 5 1996 1996 Gable CompShg VinylSd VinylSd BrkFace 203.0 Gd TA PConc Ex TA No Unf 0.0 Unf 0.0 1491.0 1491.0 GasA ... Y SBrkr 1491 0 0 1491 0.0 0.0 2 0 3 1 TA 7 Typ 1 TA Attchd 1996.0 Fin 2.0 571.0 TA TA Y 0 35 0 0 0 0 NaN NaN NaN 0 11 2007 WD Normal NaN
2597 2598 60 RL NaN 11800 Pave NaN IR1 Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 2Story 7 5 2003 2004 Gable CompShg VinylSd VinylSd BrkFace 94.0 Gd TA PConc Gd TA Gd GLQ 766.0 Unf 0.0 356.0 1122.0 GasA ... Y SBrkr 1146 1340 0 2486 1.0 0.0 3 1 5 1 Gd 10 Typ 1 Gd BuiltIn 2003.0 Fin 2.0 452.0 TA TA Y 143 32 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2598 2599 20 RL 85.0 12633 Pave NaN IR1 HLS AllPub Inside Gtl Timber PosA PosA 1Fam 1Story 10 5 2006 2007 Hip CompShg MetalSd MetalSd BrkFace 242.0 Ex TA PConc Ex TA Gd Unf 0.0 Unf 0.0 1824.0 1824.0 GasA ... Y SBrkr 1824 0 0 1824 0.0 0.0 2 0 3 1 Ex 8 Typ 1 Gd Attchd 2006.0 Fin 3.0 932.0 TA TA Y 160 36 0 0 108 0 NaN NaN NaN 0 9 2007 New Partial NaN
2599 2600 20 RL 200.0 43500 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Artery Norm 1Fam 1Story 3 5 1953 1953 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 2034 0 0 2034 0.0 0.0 1 0 2 1 TA 9 Min1 0 NaN 2Types 1953.0 RFn 4.0 1041.0 TA TA N 483 266 0 0 0 561 NaN GdPrv NaN 0 6 2007 WD Normal NaN
2600 2601 120 RM 62.0 6710 Pave NaN IR1 Lvl AllPub FR3 Gtl Mitchel Norm Norm TwnhsE SFoyer 6 5 1996 1997 Gable CompShg VinylSd VinylSd BrkFace 134.0 TA TA PConc Ex TA Av Rec 16.0 GLQ 904.0 0.0 920.0 GasA ... Y SBrkr 936 0 0 936 2.0 0.0 0 1 0 1 TA 3 Typ 0 NaN Attchd 1996.0 Fin 2.0 460.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 6 2007 WD Normal NaN
2601 2602 160 RM 21.0 1504 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs 2Story 4 4 1972 1972 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock TA TA No BLQ 252.0 Unf 0.0 294.0 546.0 GasA ... Y SBrkr 546 546 0 1092 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Attchd 1972.0 Unf 1.0 253.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2602 2603 180 RM NaN 1533 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs SLvl 4 5 1970 1970 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock Gd TA Av GLQ 503.0 Unf 0.0 27.0 530.0 GasA ... Y SBrkr 530 462 0 992 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN BuiltIn 1970.0 Fin 1.0 297.0 TA TA Y 112 97 0 0 0 0 NaN NaN NaN 0 7 2007 WD Normal NaN
2603 2604 160 RM 21.0 1495 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 2Story 4 6 1970 1970 Gable CompShg CemntBd CmentBd BrkFace 189.0 TA TA CBlock TA TA No ALQ 384.0 Unf 0.0 162.0 546.0 GasA ... Y SBrkr 546 546 0 1092 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 64 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal NaN
2604 2605 160 RM 21.0 1890 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs 2Story 4 3 1976 1976 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 546.0 546.0 GasA ... Y SBrkr 546 546 0 1092 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1976.0 Unf 1.0 286.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 4 2007 COD Normal NaN
2605 2606 85 RL 72.0 9129 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam SFoyer 5 5 1977 1977 Gable CompShg Plywood Plywood BrkFace 144.0 TA TA PConc Gd TA Av GLQ 923.0 Unf 0.0 0.0 923.0 GasA ... Y SBrkr 1008 0 0 1008 1.0 0.0 1 0 1 1 Gd 4 Typ 1 Fa Attchd 1977.0 Fin 2.0 678.0 TA TA Y 201 66 0 0 0 0 NaN MnPrv NaN 0 7 2007 WD Normal NaN
2606 2607 80 RL NaN 15957 Pave NaN IR1 Low AllPub Corner Mod Mitchel Norm Norm 1Fam SLvl 6 6 1977 1977 Gable CompShg HdBoard Plywood None 0.0 TA TA PConc Gd TA Gd GLQ 1148.0 Unf 0.0 96.0 1244.0 GasA ... Y SBrkr 1356 0 0 1356 2.0 0.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1977.0 Fin 2.0 528.0 TA TA Y 1424 0 0 0 0 0 NaN MnPrv NaN 0 9 2007 WD Normal NaN
2607 2608 20 RL 61.0 33983 Pave NaN IR1 Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 6 1977 1994 Gable CompShg Plywood Plywood None 0.0 TA Fa PConc TA TA Mn ALQ 1112.0 Unf 0.0 48.0 1160.0 GasA ... Y SBrkr 1676 0 0 1676 1.0 0.0 1 1 3 1 Gd 6 Mod 2 TA Attchd 1977.0 RFn 2.0 672.0 TA TA P 690 90 0 0 0 0 NaN GdPrv NaN 0 5 2007 WD Normal NaN
2608 2609 60 RL 68.0 8286 Pave NaN IR1 Lvl AllPub Corner Gtl Mitchel Norm Norm 1Fam 2Story 5 7 1977 1977 Gable CompShg Plywood Plywood None 0.0 TA TA PConc Gd TA No Rec 531.0 Unf 0.0 185.0 716.0 GasA ... Y SBrkr 716 716 0 1432 1.0 0.0 1 1 3 1 TA 6 Typ 1 Gd Attchd 1977.0 Fin 2.0 531.0 TA TA Y 0 136 0 0 240 0 NaN GdPrv NaN 0 6 2007 WD Normal NaN
2609 2610 85 RL 50.0 6723 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam SFoyer 5 7 1971 1971 Gable CompShg Wd Sdng HdBoard None 0.0 TA TA CBlock Gd TA Av GLQ 796.0 Unf 0.0 0.0 796.0 GasA ... Y SBrkr 796 0 0 796 0.0 1.0 1 0 2 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 129 0 0 0 0 0 NaN GdWo NaN 0 9 2007 WD Normal NaN
2610 2611 20 RL 124.0 27697 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 4 3 1961 1961 Shed CompShg Plywood Plywood NaN 198.0 TA TA CBlock TA TA No BLQ 811.0 Unf 0.0 585.0 1396.0 GasA ... N SBrkr 1608 0 0 1608 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1961.0 Unf 1.0 444.0 TA Fa Y 152 38 0 0 0 0 NaN NaN NaN 0 11 2007 COD Abnorml NaN
2611 2612 20 RL NaN 11000 Pave NaN IR2 Lvl AllPub Corner Gtl Mitchel Norm Norm 1Fam 1Story 5 6 1976 2003 Gable CompShg Plywood Plywood None 0.0 TA TA PConc Gd TA No LwQ 1090.0 Unf 0.0 0.0 1090.0 GasA ... Y SBrkr 1178 0 0 1178 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1976.0 Unf 2.0 502.0 TA TA Y 0 44 0 0 88 0 NaN MnPrv NaN 0 6 2007 WD Normal NaN
2612 2613 20 RL 65.0 11625 Pave NaN IR1 Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 7 1983 1983 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA No ALQ 596.0 Unf 0.0 220.0 816.0 GasA ... Y SBrkr 816 0 0 816 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1983.0 Fin 1.0 264.0 TA TA Y 330 0 0 0 0 0 NaN MnPrv NaN 0 5 2007 WD Normal NaN
2613 2614 20 RL 62.0 10447 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 6 1984 1984 Gable CompShg Plywood HdBoard None 0.0 TA TA CBlock TA TA No ALQ 516.0 Unf 0.0 348.0 864.0 GasA ... Y SBrkr 887 0 0 887 0.0 1.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1984.0 RFn 1.0 288.0 TA TA Y 140 0 0 0 0 0 NaN NaN NaN 0 12 2007 WD Normal NaN
2614 2615 20 RL NaN 11027 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1954 1954 Hip CompShg Wd Sdng Wd Sdng Stone 28.0 TA TA CBlock TA TA No BLQ 468.0 Rec 539.0 171.0 1178.0 GasA ... Y SBrkr 1293 0 0 1293 1.0 0.0 2 0 2 1 TA 5 Typ 0 NaN Attchd 1954.0 RFn 2.0 452.0 TA TA Y 280 0 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2615 2616 20 RL 85.0 10533 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1956 1956 Hip CompShg VinylSd VinylSd BrkFace 244.0 TA Gd CBlock TA TA No Rec 773.0 Unf 0.0 235.0 1008.0 GasA ... Y SBrkr 1024 0 0 1024 1.0 0.0 1 0 2 1 Gd 5 Typ 2 TA Attchd 1956.0 Unf 1.0 313.0 TA TA Y 0 0 0 0 280 0 NaN NaN NaN 0 8 2006 WD Normal NaN
2616 2617 20 RL NaN 11765 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 5 5 1957 1957 Gable CompShg Wd Sdng Wd Sdng Stone 302.0 TA TA CBlock TA TA Mn Rec 1127.0 Unf 0.0 490.0 1617.0 GasA ... Y SBrkr 1797 0 0 1797 0.0 0.0 1 1 3 1 TA 7 Typ 1 TA Attchd 1957.0 Unf 3.0 963.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2617 2618 20 RL NaN 39384 Pave NaN IR1 Low AllPub CulDSac Sev NAmes Norm Norm 1Fam 1Story 6 6 1957 1957 Gable CompShg Wd Sdng Wd Sdng Stone 902.0 TA TA CBlock Gd TA Gd ALQ 1110.0 Unf 0.0 595.0 1705.0 GasA ... Y SBrkr 1390 0 0 1390 1.0 0.0 1 1 1 1 Ex 4 Min1 2 Gd Attchd 1957.0 Unf 2.0 550.0 TA TA Y 0 189 0 0 0 0 NaN NaN NaN 0 10 2006 WD Abnorml NaN
2618 2619 20 RL 90.0 11727 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 7 6 1969 1969 Gable CompShg HdBoard HdBoard BrkFace 434.0 TA Gd CBlock TA TA Mn Unf 0.0 Unf 0.0 1851.0 1851.0 GasA ... Y SBrkr 1851 0 0 1851 0.0 0.0 2 0 3 1 TA 8 Typ 1 TA Attchd 1969.0 Fin 2.0 506.0 TA TA Y 0 146 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal NaN
2619 2620 60 RL 60.0 8238 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1997 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc TA TA No GLQ 700.0 Unf 0.0 113.0 813.0 GasA ... Y SBrkr 813 712 0 1525 1.0 0.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1997.0 Fin 2.0 400.0 TA TA Y 421 72 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2620 2621 60 RL NaN 13041 Pave NaN IR2 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1995 1995 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 781.0 781.0 GasA ... Y SBrkr 781 890 0 1671 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1995.0 Fin 2.0 423.0 TA TA Y 0 84 0 0 0 0 NaN NaN NaN 0 2 2006 WD Normal NaN
2621 2622 60 RL 54.0 9783 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 1996 1996 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 821.0 821.0 GasA ... Y SBrkr 821 955 0 1776 0.0 0.0 2 1 3 1 TA 7 Typ 1 TA BuiltIn 1996.0 Fin 2.0 443.0 TA TA Y 286 116 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2622 2623 60 RL 50.0 13128 Pave NaN IR1 HLS AllPub CulDSac Gtl Gilbert Norm Norm 1Fam 2Story 8 5 2005 2005 Gable CompShg VinylSd VinylSd BrkFace 216.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1074.0 1074.0 GasA ... Y SBrkr 1074 990 0 2064 0.0 0.0 2 1 4 1 Gd 7 Typ 1 Gd Attchd 2005.0 Fin 2.0 527.0 TA TA Y 0 119 0 0 0 0 NaN NaN NaN 0 1 2006 WD Normal NaN
2623 2624 60 RL 42.0 13751 Pave NaN IR1 HLS AllPub CulDSac Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 248.0 Gd TA PConc Gd TA Av GLQ 60.0 Unf 0.0 1640.0 1700.0 GasA ... Y SBrkr 1700 512 0 2212 1.0 0.0 2 1 3 1 Gd 9 Typ 1 Gd Attchd 2006.0 Fin 3.0 773.0 TA TA Y 237 38 0 0 115 0 NaN NaN NaN 0 5 2006 New Partial NaN
2624 2625 160 RL 68.0 13108 Pave NaN IR1 Lvl AllPub Inside Gtl StoneBr Norm Norm 1Fam 2Story 8 5 1994 1994 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 2062.0 2062.0 GasA ... Y SBrkr 2079 608 0 2687 0.0 0.0 2 1 4 1 Gd 9 Typ 0 NaN Attchd 1994.0 Fin 2.0 618.0 TA TA Y 168 12 0 0 0 0 NaN NaN NaN 0 12 2006 WD Normal NaN
2625 2626 20 RL NaN 8076 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 1Story 6 6 1993 1994 Gable CompShg HdBoard HdBoard BrkFace 112.0 TA TA PConc Gd TA No GLQ 705.0 Unf 0.0 455.0 1160.0 GasA ... Y SBrkr 1169 0 0 1169 0.0 1.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1993.0 Fin 2.0 402.0 TA TA Y 0 26 0 0 144 0 NaN MnPrv NaN 0 7 2006 WD Normal NaN
2626 2627 120 RL 30.0 3701 Pave NaN IR1 Lvl AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 8 5 1987 1987 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 1191.0 1191.0 GasA ... Y SBrkr 1204 0 0 1204 0.0 0.0 2 0 2 1 TA 5 Typ 0 NaN Attchd 1987.0 RFn 2.0 461.0 TA TA Y 120 70 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal NaN
2627 2628 60 RL 59.0 16023 Pave NaN IR1 HLS AllPub CulDSac Gtl StoneBr Norm Norm 1Fam 2Story 9 5 2005 2006 Hip CompShg VinylSd VinylSd BrkFace 600.0 Gd Ex PConc Ex TA Gd GLQ 1218.0 Unf 0.0 180.0 1398.0 GasA ... Y SBrkr 1414 1384 0 2798 1.0 0.0 3 1 3 1 Ex 11 Typ 1 Gd BuiltIn 2005.0 Fin 3.0 670.0 TA TA Y 182 37 0 0 0 0 NaN NaN NaN 0 3 2006 New Partial NaN
2628 2629 60 RL 60.0 18062 Pave NaN IR1 HLS AllPub CulDSac Gtl StoneBr Norm Norm 1Fam 2Story 10 5 2006 2006 Hip CompShg CemntBd CmentBd BrkFace 662.0 Ex TA PConc Ex TA Gd Unf 0.0 Unf 0.0 1528.0 1528.0 GasA ... Y SBrkr 1528 1862 0 3390 0.0 0.0 3 1 5 1 Ex 10 Typ 1 Ex BuiltIn 2006.0 Fin 3.0 758.0 TA TA Y 204 34 0 0 0 0 NaN NaN NaN 0 9 2006 New Partial NaN
2629 2630 60 RL 63.0 12292 Pave NaN IR1 HLS AllPub CulDSac Gtl StoneBr Norm Norm 1Fam 2Story 9 5 2006 2006 Hip CompShg VinylSd VinylSd BrkFace 184.0 Gd TA PConc Ex Gd Gd GLQ 205.0 Unf 0.0 889.0 1094.0 GasA ... Y SBrkr 1102 1371 0 2473 0.0 0.0 2 1 4 1 Gd 11 Typ 1 Gd BuiltIn 2006.0 Fin 3.0 675.0 TA TA Y 246 39 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial NaN
2630 2631 60 RL 82.0 16052 Pave NaN IR1 Lvl AllPub CulDSac Gtl StoneBr Norm Norm 1Fam 2Story 10 5 2006 2006 Hip CompShg VinylSd VinylSd Stone 734.0 Ex TA PConc Ex TA No GLQ 1206.0 Unf 0.0 644.0 1850.0 GasA ... Y SBrkr 1850 848 0 2698 1.0 0.0 2 1 4 1 Ex 11 Typ 1 Gd Attchd 2006.0 RFn 3.0 736.0 TA TA Y 250 0 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial NaN
2631 2632 60 RL 92.0 15922 Pave NaN IR1 HLS AllPub Corner Gtl StoneBr Norm Norm 1Fam 2Story 9 5 2005 2006 Hip CompShg VinylSd VinylSd BrkFace 550.0 Gd TA PConc Ex TA Av Unf 0.0 Unf 0.0 1390.0 1390.0 GasA ... Y SBrkr 1390 1405 0 2795 0.0 0.0 3 1 4 1 Ex 10 Typ 1 Gd BuiltIn 2005.0 Fin 3.0 660.0 TA TA Y 272 102 0 0 0 0 NaN NaN NaN 0 1 2006 New Partial NaN
2632 2633 120 RL 60.0 8147 Pave NaN Reg HLS AllPub Inside Gtl StoneBr Norm Norm TwnhsE 1Story 9 5 2005 2005 Hip CompShg MetalSd MetalSd BrkFace 230.0 Gd TA PConc Ex TA Gd GLQ 1191.0 Unf 0.0 523.0 1714.0 GasA ... Y SBrkr 1714 0 0 1714 1.0 0.0 2 0 2 1 Gd 7 Typ 1 Gd Attchd 2005.0 Fin 2.0 517.0 TA TA Y 156 55 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal NaN
2633 2634 20 RL 90.0 18261 Pave NaN IR1 HLS AllPub Inside Gtl StoneBr Norm Norm 1Fam 1Story 9 5 2005 2005 Hip CompShg VinylSd VinylSd BrkFace 420.0 Ex TA PConc Ex TA Gd GLQ 1416.0 Unf 0.0 494.0 1910.0 GasA ... Y SBrkr 2000 0 0 2000 1.0 0.0 2 1 3 1 Ex 8 Typ 2 Gd Attchd 2005.0 Unf 3.0 722.0 TA TA Y 351 102 0 0 123 0 NaN NaN NaN 0 9 2006 WD Normal NaN
2634 2635 85 RL NaN 10464 Pave NaN IR1 Lvl AllPub FR3 Gtl NWAmes Norm Norm 1Fam SFoyer 6 6 1980 1980 Gable CompShg HdBoard HdBoard BrkFace 130.0 TA TA CBlock Gd TA Av GLQ 850.0 Unf 0.0 138.0 988.0 GasA ... Y SBrkr 1102 0 0 1102 1.0 0.0 1 0 2 1 TA 5 Typ 1 TA Attchd 1980.0 RFn 2.0 582.0 TA TA Y 140 22 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2635 2636 60 RL 81.0 10530 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes PosA Norm 1Fam 2Story 7 5 1978 1978 Gable CompShg Plywood Plywood BrkFace 68.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 945.0 945.0 GasA ... Y SBrkr 945 912 0 1857 0.0 0.0 2 1 4 1 TA 8 Typ 1 TA Attchd 1978.0 RFn 2.0 482.0 TA TA Y 400 105 0 0 0 0 NaN GdPrv NaN 0 7 2006 WD Normal NaN
2636 2637 85 RL NaN 9927 Pave NaN IR1 Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam SFoyer 7 5 1976 1976 Gable CompShg VinylSd Wd Shng Stone 252.0 Gd TA CBlock Ex TA Gd GLQ 1005.0 Unf 0.0 42.0 1047.0 GasA ... Y SBrkr 1083 0 0 1083 1.0 0.0 1 0 2 1 TA 5 Typ 1 Fa Attchd 1976.0 RFn 2.0 596.0 TA TA Y 444 0 40 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2637 2638 60 FV 75.0 9512 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst RRAn Norm 1Fam 2Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No ALQ 788.0 Unf 0.0 172.0 960.0 GasA ... Y SBrkr 960 1358 0 2318 1.0 0.0 2 1 3 1 Gd 8 Typ 1 Ex BuiltIn 2005.0 Fin 2.0 541.0 TA TA Y 0 246 0 0 0 0 NaN NaN NaN 0 6 2006 New Partial NaN
2638 2639 80 RL 81.0 10530 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam SLvl 6 6 1975 2000 Gable CompShg Plywood Plywood BrkFace 248.0 TA TA CBlock TA Fa No ALQ 548.0 Unf 0.0 127.0 675.0 GasA ... Y SBrkr 1109 766 0 1875 0.0 0.0 3 0 3 1 Gd 8 Typ 1 TA Attchd 1975.0 RFn 2.0 485.0 TA TA Y 48 28 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2639 2640 20 RL 80.0 10000 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes Norm Norm 1Fam 1Story 6 6 1974 1974 Gable CompShg HdBoard Plywood BrkFace 176.0 TA TA CBlock TA TA No ALQ 755.0 Unf 0.0 348.0 1103.0 GasA ... Y SBrkr 1103 0 0 1103 0.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Attchd 1974.0 Unf 2.0 462.0 TA TA Y 295 84 0 0 0 0 NaN GdWo NaN 0 6 2006 WD Normal NaN
2640 2641 20 RL 60.0 7200 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 4 4 1971 1971 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Rec 20.0 LwQ 620.0 224.0 864.0 GasA ... Y SBrkr 874 0 0 874 0.0 1.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1995.0 Unf 2.0 576.0 TA TA Y 63 0 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal NaN
2641 2642 120 RH 26.0 8773 Pave NaN IR2 Lvl AllPub FR2 Gtl NAmes Norm Norm TwnhsE 1Story 6 5 2002 2002 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No GLQ 951.0 Unf 0.0 536.0 1487.0 GasA ... Y SBrkr 1419 0 0 1419 1.0 0.0 2 0 2 1 Gd 4 Typ 0 NaN Attchd 2002.0 Fin 2.0 543.0 TA TA Y 196 68 0 0 0 0 NaN NaN NaN 0 9 2006 WD Normal NaN
2642 2643 160 RM 24.0 2760 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm TwnhsE 2Story 6 5 1973 1973 Gable CompShg HdBoard HdBoard BrkFace 514.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 525.0 525.0 GasA ... Y SBrkr 525 567 0 1092 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1973.0 Unf 2.0 440.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 12 2006 WD Normal NaN
2643 2644 160 RM 24.0 2160 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm TwnhsE 2Story 5 6 1973 1973 Gable CompShg HdBoard HdBoard BrkFace 200.0 TA TA CBlock TA TA No LwQ 402.0 Unf 0.0 363.0 765.0 GasA ... Y SBrkr 765 600 0 1365 0.0 0.0 1 1 3 1 Gd 7 Min1 1 Fa Attchd 1973.0 Unf 2.0 440.0 TA TA Y 0 36 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2644 2645 160 RM 21.0 1890 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 7 1972 1972 Gable CompShg HdBoard HdBoard BrkFace 380.0 TA TA CBlock TA TA No ALQ 282.0 Unf 0.0 212.0 494.0 GasA ... Y SBrkr 494 536 0 1030 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1973.0 Unf 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2645 2646 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 5 1972 1972 Gable CompShg HdBoard HdBoard BrkFace 504.0 TA TA CBlock TA TA No ALQ 276.0 Unf 0.0 207.0 483.0 GasA ... Y SBrkr 483 465 0 948 0.0 0.0 1 1 2 1 TA 5 Typ 0 NaN Detchd 1972.0 Unf 1.0 264.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2646 2647 160 RM 21.0 1680 Pave NaN Reg Lvl AllPub Inside Gtl BrDale Norm Norm Twnhs 2Story 6 5 1972 1972 Gable CompShg HdBoard HdBoard BrkFace 504.0 TA TA CBlock TA TA No BLQ 382.0 Unf 0.0 143.0 525.0 GasA ... Y SBrkr 525 567 0 1092 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1972.0 Unf 1.0 264.0 TA TA Y 352 0 0 0 0 0 NaN GdPrv NaN 0 10 2006 WD Normal NaN
2647 2648 120 RL 53.0 4043 Pave NaN Reg Lvl AllPub Inside Gtl NPkVill Norm Norm TwnhsE 1Story 6 5 1975 1975 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA No ALQ 727.0 BLQ 156.0 186.0 1069.0 GasA ... Y SBrkr 1069 0 0 1069 0.0 1.0 2 0 2 1 TA 4 Typ 1 Po Attchd 1975.0 RFn 2.0 440.0 TA TA Y 0 55 0 0 225 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2648 2649 20 RL 65.0 7514 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1967 1975 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA Mn ALQ 373.0 Rec 108.0 462.0 943.0 GasA ... Y SBrkr 1387 0 0 1387 1.0 0.0 1 0 3 1 TA 6 Typ 1 TA Attchd 1974.0 RFn 1.0 300.0 TA TA Y 0 0 240 0 0 0 NaN NaN NaN 0 9 2006 WD Normal NaN
2649 2650 120 RL 24.0 2280 Pave NaN Reg Lvl AllPub FR2 Gtl NPkVill Norm Norm Twnhs 1Story 7 7 1976 1976 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock TA TA No ALQ 120.0 BLQ 492.0 443.0 1055.0 GasA ... Y SBrkr 1055 0 0 1055 1.0 0.0 2 0 2 1 TA 4 Typ 0 NaN Attchd 1976.0 Unf 1.0 319.0 TA TA Y 0 29 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2650 2651 160 RL 24.0 2179 Pave NaN Reg Lvl AllPub Inside Gtl NPkVill Norm Norm Twnhs 2Story 6 5 1976 1976 Gable CompShg Plywood Brk Cmn None 0.0 TA TA CBlock Gd TA No ALQ 70.0 Unf 0.0 785.0 855.0 GasA ... Y SBrkr 855 601 0 1456 0.0 0.0 2 1 3 1 TA 6 Typ 1 TA Attchd 1976.0 RFn 2.0 460.0 TA TA Y 0 28 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2651 2652 60 RL 72.0 16387 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2006 2006 Hip CompShg VinylSd VinylSd Stone 215.0 Gd TA PConc Ex Gd No GLQ 1369.0 Unf 0.0 369.0 1738.0 GasA ... Y SBrkr 1738 851 0 2589 1.0 0.0 2 1 4 1 Ex 11 Typ 1 Gd Attchd 2006.0 RFn 3.0 831.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2006 New Partial NaN
2652 2653 20 RL 110.0 16163 Pave NaN Reg Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 1Story 8 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 232.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1618.0 1618.0 GasA ... Y SBrkr 1618 0 0 1618 0.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2004.0 Fin 3.0 880.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2653 2654 20 RL 108.0 12228 Pave NaN Reg Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 1Story 7 5 2006 2006 Hip CompShg VinylSd VinylSd Stone 206.0 Gd TA PConc Ex Gd No Unf 0.0 Unf 0.0 1721.0 1721.0 GasA ... Y SBrkr 1740 0 0 1740 0.0 0.0 2 0 4 1 Gd 8 Typ 0 NaN Attchd 2006.0 RFn 3.0 874.0 TA TA Y 0 43 0 0 0 0 NaN NaN NaN 0 9 2006 New Partial NaN
2654 2655 20 RL 120.0 14780 Pave NaN IR1 HLS AllPub Corner Mod NridgHt Norm Norm 1Fam 1Story 9 5 2005 2005 Hip CompShg VinylSd VinylSd BrkFace 568.0 Ex TA PConc Ex TA Gd GLQ 1505.0 Unf 0.0 363.0 1868.0 GasA ... Y SBrkr 1868 0 0 1868 1.0 0.0 2 0 2 1 Ex 7 Typ 1 Gd Attchd 2005.0 Fin 3.0 1085.0 TA TA Y 354 56 0 0 156 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2655 2656 60 RL 120.0 13975 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2005 2006 Hip CompShg VinylSd VinylSd BrkFace 525.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1090.0 1090.0 GasA ... Y SBrkr 1117 1089 0 2206 0.0 0.0 2 1 4 1 Ex 10 Typ 1 Gd BuiltIn 2005.0 Fin 3.0 670.0 TA TA Y 148 95 0 0 0 0 NaN NaN NaN 0 8 2006 New Partial NaN
2656 2657 60 RL 82.0 9942 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 9 5 2005 2006 Gable CompShg MetalSd MetalSd BrkFace 385.0 Ex TA PConc Ex Gd Av GLQ 1290.0 Unf 0.0 316.0 1606.0 GasA ... Y SBrkr 1625 466 0 2091 1.0 0.0 2 1 3 1 Ex 8 Typ 1 Gd Attchd 2005.0 RFn 2.0 521.0 TA TA Y 194 84 0 0 0 0 NaN NaN NaN 0 5 2006 New Partial NaN
2657 2658 60 RL 103.0 12867 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2005 2006 Gable CompShg CemntBd CmentBd NaN NaN Gd TA PConc Ex TA Av Unf 0.0 Unf 0.0 1209.0 1209.0 GasA ... Y SBrkr 1209 1044 0 2253 0.0 0.0 2 1 3 1 Ex 8 Typ 1 Gd Attchd 2005.0 Fin 2.0 575.0 TA TA Y 243 142 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial NaN
2658 2659 60 RL 82.0 10672 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA Gd Unf 0.0 Unf 0.0 1054.0 1054.0 GasA ... Y SBrkr 1054 1335 0 2389 0.0 0.0 2 1 4 1 Gd 10 Typ 1 Gd BuiltIn 2006.0 Fin 3.0 672.0 TA TA Y 176 64 0 0 0 0 NaN NaN NaN 0 11 2006 New Partial NaN
2659 2660 60 RL 82.0 11643 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2005 2006 Hip CompShg MetalSd MetalSd BrkFace 142.0 Gd TA PConc Ex TA Av GLQ 880.0 Unf 0.0 644.0 1524.0 GasA ... Y SBrkr 1544 814 0 2358 1.0 0.0 2 1 4 1 Ex 10 Typ 1 Gd BuiltIn 2005.0 Fin 3.0 784.0 TA TA Y 120 34 0 0 0 0 NaN NaN NaN 0 8 2006 New Partial NaN
2660 2661 20 RL 121.0 13758 Pave NaN IR1 Lvl AllPub Inside Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 430.0 Ex TA PConc Ex TA Gd GLQ 1232.0 Unf 0.0 560.0 1792.0 GasA ... Y SBrkr 1792 0 0 1792 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2005.0 RFn 3.0 925.0 TA TA Y 204 49 0 0 0 0 NaN NaN NaN 0 3 2006 New Partial NaN
2661 2662 20 RL 131.0 14828 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 1Story 9 5 2004 2005 Hip CompShg MetalSd MetalSd BrkFace 674.0 Ex TA PConc Ex TA Gd GLQ 1383.0 Unf 0.0 397.0 1780.0 GasA ... Y SBrkr 1780 0 0 1780 1.0 0.0 2 0 2 1 Ex 7 Typ 1 Gd Attchd 2004.0 Fin 3.0 816.0 TA TA Y 144 68 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal NaN
2662 2663 60 RL NaN 13215 Pave NaN IR1 Lvl AllPub Corner Gtl NridgHt Norm Norm 1Fam 2Story 8 5 2004 2004 Gable CompShg VinylSd VinylSd BrkFace 112.0 Gd TA PConc Gd TA No GLQ 994.0 Unf 0.0 426.0 1420.0 GasA ... Y SBrkr 1426 488 0 1914 1.0 0.0 2 1 3 1 Gd 9 Typ 1 TA BuiltIn 2004.0 RFn 3.0 746.0 TA TA Y 168 127 0 0 0 0 NaN NaN NaN 0 2 2006 WD Normal NaN
2663 2664 120 RL 48.0 5911 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 9 5 2005 2005 Hip CompShg MetalSd MetalSd BrkFace 278.0 Ex TA PConc Ex TA No GLQ 472.0 Unf 0.0 1088.0 1560.0 GasA ... Y SBrkr 1565 0 0 1565 1.0 0.0 2 0 2 1 Ex 6 Typ 1 Gd Attchd 2005.0 RFn 2.0 556.0 TA TA Y 196 56 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal NaN
2664 2665 20 RL 61.0 7740 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 9 5 2006 2006 Hip CompShg MetalSd MetalSd BrkFace 518.0 Gd TA PConc Ex Gd No GLQ 1023.0 Unf 0.0 663.0 1686.0 GasA ... Y SBrkr 1686 0 0 1686 1.0 0.0 2 0 1 1 Ex 6 Typ 1 Gd Attchd 2006.0 Fin 3.0 899.0 TA TA Y 266 100 0 0 0 0 NaN NaN NaN 0 6 2006 New Partial NaN
2665 2666 120 RL 48.0 6373 Pave NaN Reg Lvl AllPub Inside Gtl NridgHt Norm Norm TwnhsE 1Story 9 5 2006 2006 Hip CompShg MetalSd MetalSd BrkFace 572.0 Ex TA PConc Ex Gd No GLQ 415.0 Unf 0.0 1251.0 1666.0 GasA ... Y SBrkr 1666 0 0 1666 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2006.0 RFn 2.0 575.0 TA TA Y 228 75 0 0 0 0 NaN NaN NaN 0 6 2006 New Partial NaN
2666 2667 60 RL 65.0 10237 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert RRAn Norm 1Fam 2Story 6 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 728.0 728.0 GasA ... Y SBrkr 728 728 0 1456 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd Attchd 2005.0 Fin 2.0 390.0 TA TA Y 0 24 0 0 0 0 NaN NaN NaN 0 2 2006 New Partial NaN
2667 2668 60 RL 65.0 10237 Pave NaN Reg Lvl AllPub Inside Gtl Gilbert RRAn Norm 1Fam 2Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 738.0 738.0 GasA ... Y SBrkr 738 754 0 1492 0.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 2006.0 Fin 2.0 440.0 TA TA Y 0 32 0 0 0 0 NaN NaN NaN 0 9 2006 New Partial NaN
2668 2669 20 RL 102.0 11660 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 1Story 6 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1326.0 1326.0 GasA ... Y SBrkr 1326 0 0 1326 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2006.0 Fin 2.0 427.0 TA TA Y 100 0 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial NaN
2669 2670 60 RL 96.0 11631 Pave NaN IR1 Lvl AllPub Corner Gtl Gilbert Norm Norm 1Fam 2Story 8 5 2004 2005 Gable CompShg VinylSd VinylSd BrkFace 236.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1052.0 1052.0 GasA ... Y SBrkr 1052 1321 0 2373 0.0 0.0 2 1 4 1 Gd 9 Typ 1 Gd BuiltIn 2004.0 Fin 3.0 632.0 TA TA Y 120 46 0 0 0 0 NaN NaN NaN 0 6 2006 New Partial NaN
2670 2671 60 RL 75.0 9073 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 738.0 738.0 GasA ... Y SBrkr 738 754 0 1492 0.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 2006.0 Fin 2.0 440.0 TA TA Y 100 32 0 0 0 0 NaN NaN NaN 0 10 2006 New Partial NaN
2671 2672 120 RL 43.0 3087 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd BrkFace 14.0 Gd TA PConc Gd TA Av GLQ 453.0 Unf 0.0 767.0 1220.0 GasA ... Y SBrkr 1364 0 0 1364 1.0 0.0 2 0 2 1 Gd 6 Typ 1 Gd Attchd 2006.0 Fin 2.0 437.0 TA TA Y 100 16 0 0 0 0 NaN NaN NaN 0 11 2006 New Partial NaN
2672 2673 120 RL NaN 2938 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd BrkFace 40.0 Gd TA PConc Gd TA Av GLQ 1038.0 Unf 0.0 330.0 1368.0 GasA ... Y SBrkr 1511 0 0 1511 1.0 0.0 2 0 2 1 Gd 5 Typ 1 TA Attchd 2002.0 Fin 2.0 398.0 TA TA Y 130 30 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2673 2674 120 RM NaN 3072 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2004 2004 Hip CompShg VinylSd VinylSd BrkFace 18.0 Gd TA PConc Gd TA No GLQ 1059.0 Unf 0.0 306.0 1365.0 GasA ... Y SBrkr 1548 0 0 1548 1.0 0.0 2 0 2 1 Gd 7 Typ 1 TA Attchd 2004.0 Fin 2.0 388.0 TA TA Y 143 20 0 0 0 0 NaN NaN NaN 0 9 2006 WD Normal NaN
2674 2675 120 RL 43.0 3010 Pave NaN Reg Lvl AllPub Inside Gtl Blmngtn Norm Norm TwnhsE 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 14.0 Gd TA PConc Gd TA Gd GLQ 16.0 Unf 0.0 1126.0 1142.0 GasA ... Y SBrkr 1142 0 0 1142 0.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 2005.0 Fin 2.0 440.0 TA TA Y 90 0 0 0 0 0 NaN NaN NaN 0 6 2006 New Partial NaN
2675 2676 60 RL 59.0 9171 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2004 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 848.0 848.0 GasA ... Y SBrkr 848 750 0 1598 0.0 0.0 2 1 3 1 Gd 7 Typ 1 Gd Attchd 2004.0 Fin 2.0 433.0 TA TA Y 100 48 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2676 2677 60 RL NaN 8658 Pave NaN IR1 Lvl AllPub Inside Gtl Gilbert Norm Norm 1Fam 2Story 6 5 2000 2000 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No ALQ 732.0 Unf 0.0 250.0 982.0 GasA ... Y SBrkr 1008 881 0 1889 0.0 0.0 2 1 3 1 TA 9 Typ 1 TA Attchd 2000.0 Fin 2.0 431.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2677 2678 60 RL NaN 12104 Pave NaN IR1 Lvl AllPub FR3 Gtl Gilbert Norm Norm 1Fam 2Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1035.0 1035.0 GasA ... Y SBrkr 1082 1240 0 2322 0.0 0.0 3 1 4 1 Gd 8 Typ 0 NaN Attchd 2006.0 RFn 3.0 617.0 TA TA Y 400 45 0 0 0 0 NaN NaN NaN 0 8 2006 New Partial NaN
2678 2679 60 RL 84.0 9660 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1998 1998 Gable CompShg VinylSd VinylSd BrkFace 242.0 Gd TA PConc Gd TA No GLQ 791.0 Unf 0.0 253.0 1044.0 GasA ... Y SBrkr 1079 897 0 1976 1.0 0.0 2 1 3 1 Gd 7 Typ 1 Ex Attchd 1998.0 Fin 3.0 885.0 TA TA Y 210 31 0 0 0 0 NaN NaN NaN 0 2 2006 WD Normal NaN
2679 2680 60 RL 83.0 9545 Pave NaN Reg Lvl AllPub Corner Gtl NoRidge Norm Norm 1Fam 2Story 8 5 2000 2000 Gable CompShg VinylSd VinylSd BrkFace 322.0 Gd TA PConc Gd TA Mn GLQ 505.0 Unf 0.0 655.0 1160.0 GasA ... Y SBrkr 1205 1029 0 2234 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA BuiltIn 2000.0 RFn 3.0 768.0 TA TA Y 0 50 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2680 2681 60 RL NaN 9233 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 9 5 2000 2000 Gable CompShg VinylSd VinylSd BrkFace 877.0 Gd TA PConc Ex TA Av GLQ 1182.0 Unf 0.0 358.0 1540.0 GasA ... Y SBrkr 1540 1315 0 2855 1.0 0.0 2 1 4 1 Ex 9 Typ 1 TA Attchd 2000.0 RFn 3.0 774.0 TA TA Y 247 55 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal NaN
2681 2682 60 RL 83.0 10019 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1995 1995 Hip CompShg VinylSd VinylSd BrkFace 397.0 Gd TA PConc Gd TA No ALQ 527.0 Unf 0.0 815.0 1342.0 GasA ... Y SBrkr 1358 1368 0 2726 0.0 0.0 2 1 4 1 Gd 9 Typ 1 Ex Attchd 1995.0 RFn 3.0 725.0 TA TA Y 307 169 168 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2682 2683 60 RL 114.0 17242 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 9 5 1993 1994 Hip CompShg MetalSd MetalSd BrkFace 738.0 Gd Gd PConc Ex TA Gd Rec 292.0 GLQ 1393.0 48.0 1733.0 GasA ... Y SBrkr 1933 1567 0 3500 1.0 0.0 3 1 4 1 Ex 11 Typ 1 TA Attchd 1993.0 RFn 3.0 959.0 TA TA Y 870 86 0 0 210 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2683 2684 60 RL NaN 10236 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1994 1995 Gable CompShg VinylSd VinylSd BrkFace 501.0 Gd TA PConc Gd TA Gd GLQ 380.0 BLQ 168.0 742.0 1290.0 GasA ... Y SBrkr 1305 1189 0 2494 1.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1994.0 Fin 3.0 803.0 TA TA Y 200 95 0 0 0 0 NaN GdPrv NaN 0 6 2006 WD Normal NaN
2684 2685 60 RL NaN 12585 Pave NaN IR1 Lvl AllPub Inside Gtl NoRidge Norm Norm 1Fam 2Story 8 5 1993 1993 Gable CompShg HdBoard ImStucc BrkFace 420.0 Gd TA PConc Gd TA No LwQ 247.0 GLQ 1039.0 0.0 1286.0 GasA ... Y SBrkr 1565 1234 0 2799 1.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1993.0 Fin 3.0 704.0 TA TA Y 432 136 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal NaN
2685 2686 60 RL 75.0 12447 Pave NaN IR1 Lvl AllPub Inside Gtl Somerst RRAn Norm 1Fam 2Story 8 5 2005 2006 Gable CompShg CemntBd CmentBd Stone 192.0 Gd TA PConc Gd Gd No Unf 0.0 Unf 0.0 1100.0 1100.0 GasA ... Y SBrkr 1116 848 0 1964 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd BuiltIn 2005.0 Fin 2.0 760.0 TA TA Y 200 70 0 0 0 0 NaN NaN NaN 0 1 2006 New Partial NaN
2686 2687 20 RL 49.0 15218 Pave NaN IR1 Lvl AllPub CulDSac Gtl Somerst RRAn Norm 1Fam 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd NaN NaN Gd TA PConc Ex Gd No GLQ 1562.0 Unf 0.0 108.0 1670.0 GasA ... Y SBrkr 1670 0 0 1670 1.0 0.0 2 1 2 1 Gd 6 Typ 1 Gd Attchd 2006.0 RFn 3.0 928.0 TA TA Y 0 240 200 0 0 0 NaN NaN NaN 0 9 2006 New Partial NaN
2687 2688 20 RL 85.0 10936 Pave NaN Reg Lvl AllPub Corner Gtl Somerst Feedr Norm 1Fam 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd BrkFace 60.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1504.0 1504.0 GasA ... Y SBrkr 1504 0 0 1504 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2006.0 Fin 2.0 510.0 TA TA Y 144 0 0 0 0 0 NaN NaN NaN 0 9 2006 New Partial NaN
2688 2689 20 FV 72.0 8640 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 24.0 Unf 0.0 1254.0 1278.0 GasA ... Y SBrkr 1278 0 0 1278 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 2006.0 RFn 2.0 584.0 TA TA Y 0 60 0 0 0 0 NaN NaN NaN 0 10 2006 New Partial NaN
2689 2690 60 FV 100.0 13162 Pave NaN Reg Lvl AllPub Corner Gtl Somerst Feedr Norm 1Fam 2Story 9 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA No GLQ 1836.0 Unf 0.0 200.0 2036.0 GasA ... Y SBrkr 2036 604 0 2640 1.0 0.0 3 1 3 1 Ex 11 Typ 1 Gd Attchd 2006.0 RFn 3.0 792.0 TA TA Y 0 265 0 0 0 0 NaN NaN NaN 0 11 2006 New Partial NaN
2690 2691 60 FV 65.0 8125 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 2Story 6 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 858.0 858.0 GasA ... Y SBrkr 858 858 0 1716 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2005.0 RFn 2.0 615.0 TA TA Y 0 53 0 0 0 0 NaN NaN NaN 0 2 2006 WD Normal NaN
2691 2692 20 RL 74.0 7733 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 1Story 6 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc TA TA Mn GLQ 24.0 Unf 0.0 1118.0 1142.0 GasA ... Y SBrkr 1142 0 0 1142 0.0 0.0 1 1 3 1 Gd 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 4 50 0 0 0 0 NaN NaN NaN 0 1 2006 WD Normal NaN
2692 2693 20 RL 91.0 11024 Pave NaN IR1 Lvl AllPub Corner Gtl SawyerW Norm Norm 1Fam 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 118.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 1400.0 1400.0 GasA ... Y SBrkr 1400 0 0 1400 0.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2005.0 RFn 2.0 612.0 TA TA Y 144 55 0 0 0 0 NaN NaN NaN 0 10 2006 New Partial NaN
2693 2694 20 RL 63.0 13072 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW RRAe Norm 1Fam 1Story 6 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 1131.0 1131.0 GasA ... Y SBrkr 1131 0 0 1131 0.0 0.0 1 1 3 1 Gd 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 39 0 0 0 0 NaN NaN NaN 0 3 2006 New Partial NaN
2694 2695 60 RL 65.0 7800 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd BrkFace 172.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 891.0 891.0 GasA ... Y SBrkr 891 795 0 1686 0.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 2005.0 Fin 2.0 462.0 TA TA Y 144 101 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2695 2696 60 RL 74.0 7632 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd BrkFace 96.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 784.0 784.0 GasA ... Y SBrkr 831 754 0 1585 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2005.0 RFn 2.0 449.0 TA TA Y 100 77 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal NaN
2696 2697 60 RL 70.0 8304 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 6 5 1997 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No Unf 0.0 Unf 0.0 941.0 941.0 GasA ... Y SBrkr 941 896 0 1837 0.0 0.0 2 1 3 1 TA 7 Typ 0 NaN Attchd 1997.0 RFn 2.0 688.0 TA TA Y 150 165 0 0 0 0 NaN GdPrv NaN 0 7 2006 WD Normal NaN
2697 2698 60 RL 70.0 9370 Pave NaN IR2 Lvl AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 6 5 1992 1993 Gable CompShg HdBoard HdBoard None 0.0 Gd TA PConc Gd TA No ALQ 758.0 Unf 0.0 78.0 836.0 GasA ... Y SBrkr 844 887 0 1731 1.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1992.0 RFn 2.0 462.0 TA TA Y 307 85 0 0 224 0 NaN NaN Othr 3000 10 2006 WD Family NaN
2698 2699 120 RL 50.0 7175 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm TwnhsE 1Story 6 5 1990 1991 Gable CompShg Plywood Plywood None 0.0 Gd TA PConc Gd TA No GLQ 904.0 Unf 0.0 494.0 1398.0 GasA ... Y SBrkr 1398 0 0 1398 1.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 1990.0 RFn 2.0 542.0 TA TA Y 0 46 0 0 0 0 NaN MnPrv NaN 0 7 2006 WD Normal NaN
2699 2700 120 RL 50.0 7175 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm TwnhsE 1Story 6 5 1991 1991 Gable CompShg Plywood Plywood None 0.0 Gd TA PConc Gd TA No GLQ 278.0 Unf 0.0 939.0 1217.0 GasA ... Y SBrkr 1217 0 0 1217 0.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 1991.0 RFn 2.0 484.0 TA TA Y 0 64 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2700 2701 60 RL NaN 9019 Pave NaN IR1 Lvl AllPub Inside Gtl SawyerW RRAe Norm 1Fam 2Story 6 5 1994 1994 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA No ALQ 274.0 Unf 0.0 362.0 636.0 GasA ... Y SBrkr 636 684 0 1320 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 1994.0 Fin 2.0 472.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2701 2702 20 RL 70.0 9100 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer RRAe Norm 1Fam 1Story 5 4 1962 1962 Hip CompShg Wd Sdng Wd Sdng BrkFace 51.0 TA TA CBlock TA TA No LwQ 36.0 Unf 0.0 952.0 988.0 GasA ... Y SBrkr 988 0 0 988 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1977.0 Unf 2.0 624.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2702 2703 90 RM 68.0 8927 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer RRAe Norm Duplex 1.5Fin 6 6 1977 1977 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1286 368 0 1654 0.0 0.0 2 0 4 2 TA 10 Typ 0 NaN Attchd 1977.0 RFn 2.0 528.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal NaN
2703 2704 20 RL NaN 9240 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 6 1962 2002 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No BLQ 612.0 Unf 0.0 252.0 864.0 GasA ... Y SBrkr 1211 0 0 1211 0.0 0.0 1 0 2 1 TA 6 Min1 1 TA Detchd 1972.0 Unf 2.0 576.0 TA TA Y 161 0 0 0 0 0 NaN MnPrv NaN 0 3 2006 WD Normal NaN
2704 2705 20 RL NaN 9308 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer RRNe Norm 1Fam 1Story 5 5 1965 1965 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Rec 554.0 Unf 0.0 430.0 984.0 GasA ... Y SBrkr 984 0 0 984 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1965.0 Unf 1.0 310.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 7 2006 WD Normal NaN
2705 2706 20 RL 65.0 8450 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer RRAe Norm 1Fam 1Story 5 6 1968 1968 Gable CompShg Plywood Plywood BrkFace 90.0 TA TA CBlock TA TA No BLQ 162.0 Rec 270.0 450.0 882.0 GasA ... Y SBrkr 909 0 0 909 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1968.0 Unf 1.0 294.0 TA TA Y 0 155 0 0 0 0 NaN MnPrv NaN 0 11 2006 COD Normal NaN
2706 2707 20 RL NaN 8638 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer RRAe Norm 1Fam 1Story 5 6 1963 1963 Gable CompShg HdBoard HdBoard None 0.0 TA TA PConc TA TA No ALQ 181.0 Unf 0.0 744.0 925.0 GasA ... Y SBrkr 925 0 0 925 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1990.0 Unf 2.0 484.0 TA TA Y 203 74 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal NaN
2707 2708 20 RL NaN 13052 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer Norm Norm 1Fam 1Story 5 6 1965 1965 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Rec 712.0 Unf 0.0 312.0 1024.0 GasA ... Y SBrkr 1024 0 0 1024 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Attchd 1965.0 Unf 1.0 308.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 1 2006 WD Normal NaN
2708 2709 20 RL NaN 8020 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 6 1964 1964 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No ALQ 644.0 Unf 0.0 268.0 912.0 GasA ... N SBrkr 912 0 0 912 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN GdWo NaN 0 4 2006 WD Normal NaN
2709 2710 20 RL NaN 8789 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 6 1967 1967 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA Mn Rec 659.0 Unf 0.0 253.0 912.0 GasA ... Y SBrkr 941 0 0 941 0.0 0.0 1 0 3 1 TA 6 Typ 1 Po Attchd 1967.0 Unf 1.0 288.0 TA TA Y 64 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2710 2711 80 RL 100.0 14330 Pave NaN IR1 Low AllPub Corner Gtl Veenker Norm Norm 1Fam SLvl 7 4 1974 1974 Gable CompShg WdShing Wd Sdng BrkFace 145.0 Gd Fa CBlock Gd TA Gd ALQ 1023.0 BLQ 497.0 228.0 1748.0 GasA ... Y SBrkr 2151 495 0 2646 1.0 2.0 2 0 3 1 Gd 9 Mod 4 TA Attchd 1974.0 RFn 2.0 550.0 TA TA Y 641 100 0 0 0 800 Gd GdPrv NaN 0 1 2006 WD Normal NaN
2711 2712 60 RL 105.0 11025 Pave NaN Reg HLS AllPub Inside Mod NoRidge Norm Norm 1Fam 2Story 8 5 1992 1993 Gable CompShg HdBoard ImStucc BrkFace 692.0 Gd TA PConc Ex TA Gd GLQ 1118.0 Unf 0.0 216.0 1334.0 GasA ... Y SBrkr 1520 1306 0 2826 1.0 0.0 2 1 3 1 Gd 9 Typ 3 TA Attchd 1992.0 RFn 3.0 888.0 TA TA Y 177 208 186 0 0 0 NaN NaN NaN 0 10 2006 WD Normal NaN
2712 2713 120 FV 34.0 3628 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 1Story 7 5 2004 2004 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1143.0 1143.0 GasA ... Y SBrkr 1143 0 0 1143 0.0 0.0 1 1 1 1 Gd 5 Typ 1 Gd Attchd 2004.0 RFn 2.0 588.0 TA TA Y 0 191 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2713 2714 160 FV 24.0 2544 Pave Pave Reg Lvl AllPub Inside Gtl Somerst Norm Norm Twnhs 2Story 7 5 2005 2005 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 600.0 600.0 GasA ... Y SBrkr 520 623 80 1223 0.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Detchd 2005.0 RFn 2.0 480.0 TA TA Y 0 166 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2714 2715 160 FV NaN 2998 Pave NaN Reg Lvl AllPub Inside Gtl Somerst Norm Norm TwnhsE 2Story 6 5 2000 2000 Gable CompShg MetalSd MetalSd BrkFace 513.0 Gd TA PConc Gd TA No GLQ 353.0 Unf 0.0 403.0 756.0 GasA ... Y SBrkr 768 756 0 1524 0.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Detchd 2000.0 Unf 2.0 440.0 TA TA Y 0 32 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2715 2716 160 FV NaN 4447 Pave NaN IR1 Lvl AllPub FR2 Gtl Somerst Norm Norm TwnhsE 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 530.0 530.0 GasA ... Y SBrkr 530 550 0 1080 0.0 0.0 2 1 2 1 Gd 4 Typ 0 NaN Attchd 2003.0 RFn 2.0 496.0 TA TA Y 0 50 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2716 2717 60 FV 114.0 8314 Pave Pave IR1 Lvl AllPub Corner Gtl Somerst Norm Norm 1Fam 2Story 7 5 1997 1998 Hip CompShg Wd Sdng Wd Sdng None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 569.0 569.0 GasA ... Y SBrkr 854 840 0 1694 0.0 0.0 2 1 3 1 Gd 6 Typ 1 TA BuiltIn 1997.0 Unf 1.0 434.0 TA TA Y 0 382 0 0 110 0 NaN GdPrv NaN 0 11 2006 WD Normal NaN
2717 2718 20 FV 60.0 7180 Pave Pave IR1 Lvl AllPub Inside Gtl Somerst Norm Norm 1Fam 1Story 8 5 2001 2002 Gable CompShg CemntBd CmentBd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1568.0 1568.0 GasA ... Y SBrkr 1568 0 0 1568 0.0 0.0 2 0 3 1 Gd 6 Typ 1 TA Attchd 2001.0 RFn 2.0 564.0 TA TA Y 0 266 0 0 0 0 NaN NaN NaN 0 9 2006 WD Normal NaN
2718 2719 190 RL 79.0 13110 Pave NaN IR1 Lvl AllPub Corner Gtl NWAmes RRAn Feedr 2fmCon 1Story 5 6 1972 1972 Gable CompShg Plywood Plywood BrkFace 144.0 TA TA CBlock Gd TA No GLQ 962.0 Unf 0.0 191.0 1153.0 GasA ... Y SBrkr 1193 0 0 1193 1.0 0.0 2 0 2 1 TA 6 Typ 0 NaN Attchd 1972.0 Fin 2.0 501.0 TA TA Y 140 153 0 0 0 0 NaN MnPrv NaN 0 7 2006 WD Normal NaN
2719 2720 20 RL 78.0 10140 Pave NaN Reg Lvl AllPub Inside Gtl NWAmes RRAn Norm 1Fam 1Story 7 6 1967 1967 Hip CompShg HdBoard HdBoard BrkFace 264.0 TA TA CBlock TA TA No BLQ 553.0 LwQ 68.0 713.0 1334.0 GasA ... Y SBrkr 1334 0 0 1334 1.0 0.0 2 0 3 1 TA 7 Typ 0 NaN Attchd 1967.0 RFn 2.0 477.0 TA TA Y 0 20 35 0 264 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2720 2721 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Feedr Norm 1Fam 1Story 5 5 1968 1968 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No ALQ 758.0 Unf 0.0 293.0 1051.0 GasA ... Y SBrkr 1051 0 0 1051 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1968.0 RFn 2.0 504.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2721 2722 60 RL 72.0 8640 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam 2Story 5 5 1968 1968 Gable CompShg HdBoard HdBoard BrkFace 300.0 TA TA CBlock Gd Fa Mn ALQ 361.0 Rec 483.0 56.0 900.0 GasA ... Y SBrkr 884 886 0 1770 1.0 0.0 1 1 4 1 TA 7 Typ 0 NaN Attchd 1968.0 RFn 2.0 530.0 TA TA Y 0 60 0 0 270 0 NaN NaN Shed 455 6 2006 WD Normal NaN
2722 2723 20 RL 78.0 9360 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam 1Story 6 7 1968 2004 Hip CompShg HdBoard HdBoard BrkFace 203.0 TA TA CBlock TA TA Av ALQ 760.0 Unf 0.0 216.0 976.0 GasA ... Y SBrkr 976 0 0 976 1.0 0.0 1 0 2 1 Gd 4 Typ 1 Fa Attchd 1968.0 RFn 2.0 504.0 TA TA Y 94 0 0 0 0 0 NaN NaN NaN 0 8 2006 WD Abnorml NaN
2723 2724 85 RL 70.0 8400 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Feedr Norm 1Fam SFoyer 5 6 1968 1968 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock Gd TA Gd GLQ 744.0 Unf 0.0 89.0 833.0 GasA ... Y SBrkr 898 0 0 898 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1968.0 RFn 1.0 326.0 TA TA Y 143 0 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal NaN
2724 2725 20 RL NaN 9759 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1966 1966 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No BLQ 799.0 Unf 0.0 252.0 1051.0 GasA ... Y SBrkr 1051 0 0 1051 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1966.0 RFn 1.0 264.0 TA TA Y 182 88 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal NaN
2725 2726 80 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 5 7 1967 1967 Gable CompShg MetalSd MetalSd BrkFace 140.0 TA TA PConc TA TA Av ALQ 602.0 Rec 402.0 137.0 1141.0 GasA ... Y SBrkr 1141 0 0 1141 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1967.0 Unf 1.0 568.0 TA TA Y 0 78 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2726 2727 190 RL 80.0 8800 Pave NaN Reg Lvl AllPub Inside Gtl NAmes RRAn Norm 2fmCon 1Story 6 7 1965 2000 Hip CompShg BrkFace VinylSd None 0.0 TA Gd PConc TA TA Mn ALQ 901.0 BLQ 252.0 34.0 1187.0 GasA ... Y SBrkr 1565 0 0 1565 1.0 0.0 2 0 3 1 Gd 7 Min1 2 TA Attchd 1965.0 RFn 1.0 299.0 TA TA Y 200 25 211 0 0 0 NaN MnPrv Shed 460 6 2006 WD Abnorml NaN
2727 2728 20 RL NaN 10368 Pave NaN IR1 Lvl AllPub CulDSac Gtl NAmes Norm Norm 1Fam 1Story 6 6 1964 1964 Hip CompShg HdBoard HdBoard BrkFace 112.0 TA TA CBlock TA TA No ALQ 260.0 LwQ 748.0 0.0 1008.0 GasA ... Y SBrkr 1488 0 0 1488 1.0 0.0 1 1 3 1 TA 7 Typ 1 Gd Attchd 1964.0 Fin 2.0 430.0 TA TA Y 154 60 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2728 2729 60 RL 85.0 9350 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 2Story 5 6 1964 1964 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No ALQ 360.0 Unf 0.0 360.0 720.0 GasA ... Y SBrkr 720 720 0 1440 0.0 0.0 1 1 4 1 TA 7 Typ 1 Po Attchd 1964.0 Fin 2.0 480.0 TA TA Y 0 32 240 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2729 2730 20 RL 80.0 10800 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1960 1960 Hip CompShg Wd Sdng Wd Sdng BrkFace 88.0 TA TA CBlock TA TA No ALQ 632.0 Unf 0.0 616.0 1248.0 GasA ... Y SBrkr 1248 0 0 1248 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1960.0 Unf 1.0 286.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 5 2006 WD Normal NaN
2730 2731 30 RL 60.0 8550 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 8 1934 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No BLQ 574.0 Unf 0.0 242.0 816.0 GasA ... Y SBrkr 816 0 0 816 1.0 0.0 1 0 2 1 TA 4 Typ 1 Fa Attchd 1949.0 Unf 1.0 240.0 TA TA Y 228 0 40 0 0 0 NaN MnPrv NaN 0 7 2006 WD Normal NaN
2731 2732 20 RL 68.0 9724 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 7 1947 1950 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 938.0 938.0 GasA ... Y SBrkr 1043 0 0 1043 0.0 0.0 1 0 2 1 TA 5 Typ 1 Gd Detchd 1947.0 Unf 1.0 273.0 TA TA Y 125 48 0 0 0 0 NaN GdWo NaN 0 5 2006 WD Normal NaN
2732 2733 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1961 1990 Gable CompShg WdShing Wd Shng None 0.0 TA TA CBlock TA TA Mn BLQ 915.0 Unf 0.0 336.0 1251.0 GasA ... Y SBrkr 1433 0 0 1433 1.0 0.0 1 0 3 1 TA 7 Min1 1 Gd Attchd 1961.0 Unf 2.0 441.0 TA TA Y 144 0 205 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2733 2734 20 RL 89.0 10858 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Feedr Norm 1Fam 1Story 5 6 1952 1952 Gable CompShg Wd Sdng Plywood Stone 150.0 TA Gd CBlock TA TA Mn LwQ 40.0 Unf 0.0 1404.0 1444.0 GasA ... Y SBrkr 1624 0 0 1624 1.0 0.0 1 0 2 1 TA 6 Min1 1 Gd Attchd 1952.0 RFn 1.0 240.0 TA TA Y 0 40 324 0 0 0 NaN MnPrv NaN 0 7 2006 WD Partial NaN
2734 2735 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1951 1951 Gable CompShg HdBoard HdBoard Stone 144.0 TA TA CBlock TA TA No ALQ 996.0 Unf 0.0 60.0 1056.0 GasA ... Y FuseA 1216 0 0 1216 1.0 0.0 1 0 3 1 TA 7 Typ 0 NaN Attchd 1951.0 RFn 1.0 280.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2735 2736 60 RL 79.0 9462 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 2Story 5 6 1949 1973 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 704.0 704.0 GasA ... Y FuseA 1024 704 0 1728 0.0 0.0 1 1 3 1 TA 7 Min1 1 Gd Attchd 1949.0 Unf 1.0 234.0 TA TA Y 245 60 0 0 0 0 NaN MnPrv NaN 0 7 2006 WD Normal NaN
2736 2737 20 RL 82.0 9888 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1954 1975 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No BLQ 486.0 Unf 0.0 450.0 936.0 GasA ... Y FuseA 936 0 0 936 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1954.0 Unf 1.0 240.0 TA TA Y 0 0 160 0 0 0 NaN MnPrv NaN 0 3 2006 WD Normal NaN
2737 2738 90 RL NaN 8917 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm Duplex 1Story 5 5 1967 1967 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1584.0 1584.0 GasA ... Y SBrkr 1584 0 0 1584 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Detchd 1967.0 Unf 2.0 506.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal NaN
2738 2739 80 RL NaN 12700 Pave NaN IR1 Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 6 5 1964 1964 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No ALQ 939.0 Unf 0.0 307.0 1246.0 GasA ... Y SBrkr 1246 0 0 1246 1.0 0.0 1 0 3 1 TA 6 Typ 2 Gd Attchd 1964.0 RFn 2.0 441.0 TA TA Y 0 69 0 0 0 0 NaN NaN NaN 0 11 2006 WD Normal NaN
2739 2740 20 RL 109.0 9723 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 7 1963 1963 Hip CompShg MetalSd MetalSd BrkFace 332.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1008.0 1008.0 GasA ... Y SBrkr 1008 0 0 1008 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1963.0 RFn 2.0 430.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal NaN
2740 2741 20 RL 70.0 8400 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Feedr Norm 1Fam 1Story 5 5 1957 1957 Gable CompShg BrkFace BrkFace None 0.0 TA TA CBlock Fa TA Mn BLQ 623.0 Unf 0.0 556.0 1179.0 GasA ... Y SBrkr 1364 0 0 1364 0.0 0.0 1 1 3 1 TA 6 Typ 1 Gd Attchd 1957.0 RFn 1.0 331.0 TA TA Y 0 60 0 0 0 0 NaN GdPrv NaN 0 3 2006 WD Normal NaN
2741 2742 20 RL NaN 9610 Pave NaN IR1 Lvl AllPub Corner Gtl NAmes Feedr Norm 1Fam 1Story 6 6 1958 1958 Hip CompShg Wd Sdng Wd Sdng BrkFace 632.0 TA TA CBlock TA TA No Rec 203.0 Unf 0.0 918.0 1121.0 GasA ... Y FuseA 1336 0 0 1336 0.0 0.0 1 1 3 1 TA 7 Typ 1 TA Attchd 1958.0 RFn 2.0 488.0 TA TA Y 80 0 0 0 0 0 NaN NaN NaN 0 12 2006 WD Normal NaN
2742 2743 80 RL 125.0 10000 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam SLvl 5 6 1956 1956 Hip CompShg Wd Sdng Wd Sdng BrkFace 272.0 TA TA CBlock TA TA Av BLQ 678.0 Rec 281.0 99.0 1058.0 GasA ... Y SBrkr 1370 0 0 1370 1.0 0.0 1 0 3 1 TA 6 Typ 1 TA Basment 1956.0 RFn 1.0 300.0 TA TA Y 191 0 0 0 120 0 NaN MnPrv NaN 0 2 2006 WD Normal NaN
2743 2744 20 RL 72.0 10152 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 6 1956 1994 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Av BLQ 914.0 Unf 0.0 210.0 1124.0 GasA ... Y SBrkr 1124 0 0 1124 1.0 0.0 1 0 3 1 TA 6 Typ 1 TA Attchd 1956.0 Fin 1.0 353.0 TA TA Y 0 211 180 0 142 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2744 2745 20 RL 70.0 8092 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 8 1954 2000 Hip CompShg Wd Sdng Wd Sdng BrkFace 176.0 TA Gd CBlock TA TA No ALQ 824.0 Unf 0.0 226.0 1050.0 GasA ... Y SBrkr 1050 0 0 1050 1.0 0.0 1 0 3 1 Gd 6 Typ 0 NaN Attchd 1954.0 RFn 1.0 286.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Abnorml NaN
2745 2746 20 RL 66.0 12778 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1952 2003 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No GLQ 658.0 Unf 0.0 350.0 1008.0 GasA ... Y FuseA 1008 0 0 1008 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1952.0 RFn 1.0 280.0 TA TA Y 0 154 0 0 0 0 NaN MnPrv NaN 0 1 2006 WD Normal NaN
2746 2747 20 RL 75.0 10170 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm 1Fam 1Story 6 6 1951 1951 Hip CompShg Wd Sdng Wd Sdng BrkFace 522.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 216.0 216.0 GasA ... Y SBrkr 1575 0 0 1575 0.0 0.0 1 1 2 1 Gd 5 Typ 1 Gd Attchd 1951.0 Unf 2.0 400.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2747 2748 80 RL 55.0 7700 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 5 7 1956 1956 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock Gd TA No BLQ 271.0 Unf 0.0 30.0 301.0 GasA ... Y FuseA 1145 0 0 1145 0.0 0.0 1 0 3 1 TA 6 Min2 0 NaN Detchd 1993.0 Unf 2.0 684.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 9 2006 WD Normal NaN
2748 2749 20 RL 65.0 11050 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1956 1956 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No LwQ 488.0 Unf 0.0 517.0 1005.0 GasA ... Y SBrkr 1005 0 0 1005 0.0 0.0 1 0 2 1 TA 6 Typ 1 TA Attchd 1956.0 Unf 1.0 319.0 TA TA Y 0 0 0 0 288 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2749 2750 20 RL 80.0 13600 Pave NaN Reg Bnk AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1955 1955 Gable CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Rec 144.0 BLQ 912.0 0.0 1056.0 GasA ... Y SBrkr 1056 0 0 1056 1.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1955.0 Fin 1.0 300.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv Shed 650 11 2006 WD Normal NaN
2750 2751 20 RL 85.0 15428 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 6 1951 1991 Hip CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Rec 741.0 Unf 0.0 143.0 884.0 GasA ... Y SBrkr 884 0 0 884 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1951.0 Fin 1.0 270.0 TA TA Y 0 0 0 0 195 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2751 2752 30 RL 118.0 21299 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 7 5 1941 1963 Hip WdShake BrkFace BrkFace None 0.0 Gd TA CBlock TA TA No Unf 0.0 Unf 0.0 929.0 929.0 GasA ... Y SBrkr 2039 0 0 2039 1.0 0.0 1 1 3 1 TA 7 Min1 3 Gd 2Types 1941.0 Unf 3.0 791.0 TA TA Y 0 0 90 0 0 0 NaN NaN NaN 0 12 2006 COD Abnorml NaN
2752 2753 20 RL 70.0 13300 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 5 1956 2001 Hip CompShg Wd Sdng VinylSd None 0.0 TA TA CBlock TA TA No Rec 494.0 Unf 0.0 521.0 1015.0 GasA ... Y SBrkr 1384 0 0 1384 1.0 0.0 1 0 2 1 TA 6 Min1 0 NaN Attchd 2001.0 Unf 2.0 896.0 TA TA Y 75 0 0 323 0 0 NaN NaN Shed 400 6 2006 WD Normal NaN
2753 2754 190 RL 94.0 22136 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Artery Norm 2fmCon 1.5Fin 5 5 1925 1975 Gable CompShg MetalSd MetalSd None 0.0 TA Fa CBlock TA TA Mn GLQ 1018.0 Unf 0.0 1153.0 2171.0 GasA ... Y SBrkr 1392 1248 0 2640 2.0 0.0 2 1 5 1 TA 10 Maj1 1 Gd Attchd 1977.0 RFn 3.0 1008.0 TA TA N 631 48 148 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2754 2755 50 RL 50.0 7500 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Fin 6 6 1947 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 784.0 784.0 GasA ... Y FuseA 900 412 0 1312 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Detchd 1953.0 Unf 2.0 649.0 TA TA Y 0 28 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal NaN
2755 2756 30 RL 60.0 10410 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 3 8 1930 2001 Gable CompShg VinylSd VinylSd None 0.0 TA Gd PConc TA TA No Unf 0.0 Unf 0.0 713.0 713.0 GasA ... Y SBrkr 713 0 0 713 0.0 0.0 1 0 2 1 Gd 5 Typ 0 NaN Detchd 1936.0 Unf 1.0 371.0 Fa Fa N 0 75 161 0 0 0 NaN NaN NaN 0 10 2006 WD Normal NaN
2756 2757 30 RL 60.0 10914 Pave Grvl Reg Lvl AllPub Inside Gtl NAmes Artery Norm 1Fam 1Story 3 3 1929 1950 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA Fa CBlock TA TA Mn Unf 0.0 Unf 0.0 715.0 715.0 GasA ... N FuseP 715 0 0 715 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1967.0 Unf 2.0 660.0 Fa TA N 0 0 75 0 112 0 NaN NaN NaN 0 8 2006 WD Normal NaN
2757 2758 50 RL 60.0 7008 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1.5Fin 4 8 1900 1998 Gable CompShg MetalSd MetalSd None 0.0 TA Gd BrkTil Fa Fa No Unf 0.0 Unf 0.0 448.0 448.0 GasA ... Y SBrkr 448 272 0 720 0.0 0.0 1 0 1 1 Fa 5 Typ 0 NaN Attchd 1900.0 Unf 1.0 280.0 Fa TA Y 0 0 70 0 0 0 NaN NaN NaN 0 3 2006 WD Normal NaN
2758 2759 70 RL 60.0 7200 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 6 8 1915 1950 Gable CompShg MetalSd MetalSd None 0.0 TA Ex CBlock TA TA No Rec 338.0 Unf 0.0 325.0 663.0 GasA ... Y SBrkr 774 821 0 1595 0.0 0.0 2 0 3 1 TA 7 Typ 1 Gd Detchd 1974.0 Unf 2.0 528.0 TA TA Y 49 0 231 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2759 2760 50 RL 60.0 10818 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 4 4 1910 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA BrkTil Fa TA No Unf 0.0 Unf 0.0 1077.0 1077.0 GasA ... Y FuseA 981 779 0 1760 0.0 0.0 1 1 4 1 TA 7 Typ 1 TA Detchd 1935.0 Unf 2.0 648.0 Fa TA Y 120 0 96 0 0 0 NaN NaN NaN 0 2 2006 COD Abnorml NaN
2760 2761 80 RL 83.0 10184 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam SLvl 6 5 1963 1963 Gable CompShg HdBoard HdBoard BrkFace 379.0 TA TA CBlock TA TA Av ALQ 580.0 Unf 0.0 503.0 1083.0 GasA ... Y SBrkr 1146 0 0 1146 0.0 1.0 1 0 3 1 TA 6 Typ 1 Gd Attchd 1963.0 Unf 1.0 294.0 TA TA Y 345 75 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2761 2762 20 RL 77.0 9510 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 6 5 1962 1985 Gable CompShg HdBoard HdBoard BrkCmn 161.0 TA TA CBlock TA TA No ALQ 701.0 Unf 0.0 434.0 1135.0 GasA ... Y SBrkr 1207 0 0 1207 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1962.0 RFn 1.0 264.0 TA TA Y 0 240 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2762 2763 20 RL 80.0 10800 Pave NaN Reg Lvl AllPub Inside Gtl NAmes PosA Norm 1Fam 1Story 6 6 1961 1992 Gable CompShg HdBoard HdBoard BrkFace 104.0 TA TA CBlock TA TA No Rec 913.0 Unf 0.0 400.0 1313.0 GasA ... Y SBrkr 1773 0 0 1773 1.0 0.0 2 0 3 1 TA 6 Min2 2 TA Attchd 1961.0 RFn 2.0 418.0 TA TA Y 355 98 0 0 144 0 NaN NaN NaN 0 8 2006 WD Normal NaN
2763 2764 20 RL 86.0 11650 Pave NaN Reg Lvl AllPub Corner Gtl NAmes PosA Norm 1Fam 1Story 7 5 1959 1959 Hip CompShg Plywood Plywood BrkCmn 58.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y FuseA 1472 0 0 1472 0.0 0.0 2 0 2 1 Gd 5 Typ 1 Gd Attchd 1959.0 Unf 2.0 484.0 TA TA Y 0 68 0 0 227 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2764 2765 60 RL NaN 18275 Pave NaN IR1 HLS AllPub Inside Gtl NAmes Norm Norm 1Fam 2Story 7 8 1962 1998 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA Gd ALQ 636.0 Unf 0.0 802.0 1438.0 GasA ... Y SBrkr 1900 548 0 2448 1.0 0.0 3 0 3 1 TA 9 Typ 2 Gd Attchd 1962.0 RFn 2.0 441.0 TA TA Y 520 102 0 0 0 0 NaN NaN NaN 0 9 2006 WD Normal NaN
2765 2766 50 RL 60.0 12144 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1.5Fin 4 6 1950 1950 Gable CompShg BrkComm Wd Sdng None 0.0 TA TA CBlock TA TA No Rec 455.0 Unf 0.0 455.0 910.0 GasA ... Y SBrkr 910 611 0 1521 0.0 0.0 1 1 3 1 Gd 6 Min2 0 NaN Detchd 1950.0 Unf 1.0 597.0 Fa TA Y 199 0 168 0 0 0 NaN NaN NaN 0 9 2006 WD Normal NaN
2766 2767 90 RL 60.0 8544 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm Duplex 1Story 3 4 1950 1950 Gable CompShg BrkFace Stone None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 Wall ... N FuseF 1040 0 0 1040 0.0 0.0 2 0 2 2 TA 6 Typ 0 NaN Detchd 1950.0 Unf 2.0 400.0 TA Fa Y 0 0 0 0 0 0 NaN NaN NaN 0 12 2006 WD Normal NaN
2767 2768 90 RL 75.0 8512 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Norm Norm Duplex 1Story 5 5 1960 1960 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA Fa No Unf 0.0 Unf 0.0 1556.0 1556.0 GasA ... Y SBrkr 1556 0 0 1556 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 9 2006 WD Normal NaN
2768 2769 20 RL 70.0 7000 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Norm Norm 1Fam 1Story 5 4 1961 1961 Hip CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No GLQ 781.0 Unf 0.0 369.0 1150.0 GasA ... Y SBrkr 1150 0 0 1150 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1961.0 RFn 1.0 288.0 TA TA Y 0 0 0 0 162 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2769 2770 20 RL 74.0 7400 Pave NaN Reg Lvl AllPub Corner Gtl NAmes Artery Norm 1Fam 1Story 7 6 1962 1962 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No LwQ 809.0 Unf 0.0 236.0 1045.0 GasA ... Y SBrkr 1045 0 0 1045 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1962.0 Unf 2.0 528.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal NaN
2770 2771 20 RL 70.0 7000 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Artery Norm 1Fam 1Story 5 6 1962 1962 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA No BLQ 468.0 Unf 0.0 396.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 1.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1962.0 Unf 1.0 336.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 2 2006 WD Normal NaN
2771 2772 190 RL 70.0 7000 Pave NaN Reg Lvl AllPub Inside Gtl NAmes Artery Norm 2fmCon SFoyer 5 5 1962 1962 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA Av ALQ 953.0 Unf 0.0 72.0 1025.0 GasA ... Y SBrkr 1025 0 0 1025 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 96 80 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal NaN
2772 2773 70 RM 62.0 9856 Pave Grvl Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 2Story 5 8 1900 2005 Hip CompShg CemntBd CmentBd None 0.0 Gd Gd PConc Fa TA No Unf 0.0 Unf 0.0 716.0 716.0 GasA ... Y FuseA 1007 1007 0 2014 0.0 0.0 2 0 5 1 TA 8 Typ 0 NaN Detchd 1900.0 Unf 2.0 624.0 TA TA Y 0 72 167 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2773 2774 50 RM 60.0 9600 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 6 1948 1950 Gable CompShg MetalSd MetalSd Stone 264.0 TA TA CBlock TA TA No Rec 276.0 Unf 0.0 936.0 1212.0 GasA ... Y FuseA 1226 442 0 1668 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1948.0 Unf 1.0 240.0 TA TA Y 0 0 140 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2774 2775 50 RM 60.0 5520 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 1.5Fin 4 6 1920 1980 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA Fa No LwQ 284.0 Unf 0.0 863.0 1147.0 GasA ... N SBrkr 1147 510 0 1657 0.0 0.0 1 0 4 1 Fa 9 Typ 1 TA Detchd 1920.0 Unf 1.0 162.0 Fa Fa N 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2775 2776 50 RM 60.0 9600 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 6 8 1900 2004 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Rec 381.0 Unf 0.0 399.0 780.0 GasA ... Y SBrkr 940 476 0 1416 0.0 1.0 1 0 3 1 Gd 7 Typ 0 NaN Detchd 1956.0 Unf 2.0 400.0 TA TA Y 0 24 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2776 2777 70 RM 58.0 6451 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 7 7 1900 1970 Gable CompShg AsbShng Wd Sdng None 0.0 TA TA Stone TA TA No Rec 208.0 Unf 0.0 504.0 712.0 GasA ... Y SBrkr 848 580 0 1428 1.0 0.0 1 0 4 1 TA 7 Typ 0 NaN Detchd 1985.0 Fin 2.0 576.0 TA TA Y 264 0 84 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2777 2778 70 RM 66.0 3960 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 2Story 7 8 1930 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 502.0 502.0 GasA ... N SBrkr 502 502 0 1004 0.0 0.0 1 0 2 1 Gd 5 Typ 1 Po Detchd 1930.0 Unf 1.0 200.0 Fa TA N 280 0 68 0 0 0 NaN MnPrv NaN 0 7 2006 WD Normal NaN
2778 2779 190 RM 56.0 7745 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 2fmCon 1.5Fin 4 6 1900 1950 Gable CompShg MetalSd MetalSd None 0.0 Gd TA PConc TA TA No Unf 0.0 Unf 0.0 938.0 938.0 GasA ... N SBrkr 1084 867 0 1951 0.0 0.0 2 0 4 2 Fa 9 Typ 0 NaN Detchd 1993.0 Unf 2.0 576.0 TA TA P 0 6 28 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2779 2780 30 RM 56.0 7741 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 6 5 1924 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA Fa No BLQ 143.0 Rec 72.0 817.0 1032.0 GasA ... N FuseA 1032 0 0 1032 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1995.0 Unf 1.0 280.0 TA TA Y 0 0 112 0 0 0 NaN MnPrv NaN 0 6 2006 COD Abnorml NaN
2780 2781 30 RM 50.0 5633 Pave Pave Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 7 1925 1950 Gable CompShg MetalSd Stucco None 0.0 TA TA BrkTil TA Fa No Unf 0.0 Unf 0.0 844.0 844.0 GasA ... Y SBrkr 844 0 0 844 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1925.0 Unf 1.0 216.0 TA TA N 50 81 123 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2781 2782 20 RM 60.0 7200 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 4 5 1950 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 576.0 576.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1952.0 RFn 1.0 528.0 TA TA Y 0 0 0 0 115 0 NaN NaN NaN 0 8 2006 COD Normal NaN
2782 2783 70 RM 42.0 7614 Pave Grvl Reg Lvl AllPub Inside Mod OldTown Norm Norm 1Fam 2Story 3 5 1905 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA Fa Mn Unf 0.0 Unf 0.0 738.0 738.0 GasA ... Y FuseA 714 662 0 1376 0.0 0.0 1 0 2 1 TA 7 Typ 0 NaN Detchd 1930.0 Unf 1.0 216.0 TA TA N 0 0 104 0 225 0 NaN NaN NaN 0 3 2006 WD Normal NaN
2783 2784 190 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 2fmCon 1Story 5 7 1955 1955 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Av GLQ 576.0 Unf 0.0 384.0 960.0 GasA ... Y FuseA 960 0 0 960 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1976.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2784 2785 50 RM 50.0 6000 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 5 7 1924 1950 Gable CompShg MetalSd MetalSd BrkFace 145.0 TA Gd PConc TA TA No Unf 0.0 Unf 0.0 816.0 816.0 GasA ... Y SBrkr 816 750 0 1566 0.0 0.0 1 1 5 1 Gd 7 Typ 0 NaN Detchd 1976.0 Unf 2.0 450.0 TA TA Y 24 0 296 0 0 0 NaN MnPrv NaN 0 8 2006 WD Normal NaN
2785 2786 30 RM 52.0 7830 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 3 5 1921 1950 Gable CompShg AsbShng AsbShng None 0.0 TA TA BrkTil Fa TA No LwQ 416.0 Unf 0.0 76.0 492.0 GasA ... Y SBrkr 492 0 0 492 1.0 0.0 1 0 1 1 TA 3 Typ 0 NaN Detchd 1921.0 Unf 1.0 200.0 Fa TA N 0 0 78 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2786 2787 50 RM 56.0 9576 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1.5Fin 6 7 1945 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock Fa TA No Rec 310.0 Unf 0.0 460.0 770.0 GasA ... Y SBrkr 885 297 0 1182 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Detchd 1945.0 Unf 1.0 378.0 Fa TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 5 2006 WD Normal NaN
2787 2788 30 RM 48.0 5747 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 3 4 1920 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 798.0 798.0 GasA ... Y SBrkr 840 0 0 840 0.0 0.0 1 0 2 1 Fa 5 Typ 0 NaN Detchd 1938.0 Unf 1.0 250.0 TA Fa N 112 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2788 2789 75 RM 70.0 6300 Pave NaN Reg Lvl AllPub Corner Gtl OldTown Norm Norm 1Fam 2.5Unf 7 6 1910 2005 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 1226.0 1226.0 GasA ... Y SBrkr 1226 878 0 2104 0.0 0.0 2 0 5 1 TA 9 Typ 0 NaN Detchd 1910.0 Unf 2.0 432.0 Fa TA P 0 341 88 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2789 2790 90 RM 33.0 5976 Pave NaN Reg Lvl AllPub Inside Gtl OldTown Norm Norm Duplex 2Story 5 7 1920 1950 Hip CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 624.0 624.0 GasA ... N FuseA 624 624 0 1248 0.0 0.0 2 0 2 2 TA 8 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 130 256 0 0 0 NaN NaN NaN 0 12 2006 WD Normal NaN
2790 2791 20 RM 65.0 9750 Pave Grvl Reg Lvl AllPub Inside Gtl OldTown Norm Norm 1Fam 1Story 5 5 1958 1958 Hip CompShg HdBoard HdBoard None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 960.0 960.0 GasA ... Y SBrkr 960 0 0 960 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 2002.0 Unf 2.0 624.0 TA TA Y 0 0 0 0 0 0 NaN NaN Gar2 4500 7 2006 WD Normal NaN
2791 2792 50 C (all) 63.0 4761 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Norm Norm 1Fam 1.5Unf 3 3 1918 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 Fa Fa BrkTil TA Fa No Unf 0.0 Unf 0.0 1020.0 1020.0 GasA ... N FuseP 1020 0 0 1020 0.0 0.0 1 0 2 1 Fa 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 105 0 0 0 NaN NaN NaN 0 10 2006 ConLD Normal NaN
2792 2793 70 RL 69.0 11737 Pave NaN IR1 Bnk AllPub Inside Gtl BrkSide Norm Norm 1Fam 2Story 6 7 1924 1996 Gambrel CompShg BrkComm Stucco None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 848.0 848.0 GasW ... N SBrkr 1017 810 0 1827 0.0 0.0 1 0 2 1 TA 9 Typ 1 Gd Detchd 1943.0 Unf 1.0 240.0 Fa TA Y 27 36 42 0 0 0 NaN GdPrv NaN 0 5 2006 WD Normal NaN
2793 2794 50 RM 51.0 6120 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 3 5 1930 1950 Gable CompShg AsbShng AsbShng None 0.0 Gd TA CBlock TA TA No Rec 347.0 Unf 0.0 381.0 728.0 GasA ... Y SBrkr 728 434 0 1162 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1930.0 Unf 1.0 258.0 Fa Po Y 0 24 0 0 0 0 NaN NaN NaN 0 11 2006 ConLI Abnorml NaN
2794 2795 50 RM 51.0 6120 Pave NaN Reg Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1.5Fin 5 7 1930 1984 Gable CompShg MetalSd MetalSd None 0.0 TA Gd BrkTil TA TA No Unf 0.0 Unf 0.0 741.0 741.0 GasA ... Y SBrkr 741 583 0 1324 0.0 0.0 1 0 3 1 Gd 7 Typ 0 NaN Detchd 1930.0 Unf 1.0 180.0 Fa TA Y 0 0 55 0 0 0 NaN NaN NaN 0 2 2006 WD Normal NaN
2795 2796 30 RL 50.0 11672 Pave Pave IR2 Lvl AllPub Inside Gtl BrkSide Norm Norm 1Fam 1Story 5 5 1925 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 816.0 816.0 GasA ... Y FuseA 816 0 0 816 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1925.0 Unf 1.0 210.0 Fa Fa N 168 0 112 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2796 2797 50 RM 90.0 33120 Pave NaN IR3 Lvl AllPub Inside Gtl OldTown RRAn Feedr 1Fam 1.5Fin 6 5 1962 1962 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1595.0 1595.0 GasA ... Y SBrkr 1611 875 0 2486 0.0 0.0 2 0 5 1 TA 8 Typ 1 Gd Detchd 1962.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal NaN
2797 2798 50 RM 60.0 10320 Pave Grvl Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 4 5 1924 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA Fa No Unf 0.0 Unf 0.0 596.0 596.0 GasA ... Y FuseF 834 596 0 1430 0.0 0.0 2 0 3 1 Fa 7 Typ 0 NaN Detchd 1924.0 Unf 2.0 370.0 Fa Fa Y 218 0 0 0 210 0 NaN NaN NaN 0 10 2006 WD Abnorml NaN
2798 2799 70 RM 60.0 7518 Pave NaN Reg Lvl AllPub FR3 Gtl IDOTRR Norm Norm 1Fam 2Story 5 8 1910 2004 Gable CompShg AsbShng Plywood None 0.0 Fa Gd BrkTil Fa Fa No Unf 0.0 Unf 0.0 396.0 396.0 GasA ... Y SBrkr 665 665 0 1330 0.0 0.0 1 0 3 1 TA 7 Typ 0 NaN Detchd 2001.0 Unf 1.0 390.0 TA TA N 0 72 45 0 0 0 NaN MnPrv NaN 0 7 2006 WD Normal NaN
2799 2800 30 RM 50.0 9000 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 5 4 1919 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 610.0 610.0 GasA ... N FuseA 819 0 0 819 0.0 0.0 1 0 2 1 Gd 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 0 0 0 0 NaN NaN NaN 0 9 2006 WD Abnorml NaN
2800 2801 30 RM 60.0 7200 Pave NaN Reg Lvl AllPub Corner Gtl IDOTRR Norm Norm 1Fam 1Story 6 6 1930 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA BrkTil TA TA No LwQ 343.0 Unf 0.0 641.0 984.0 GasA ... Y FuseF 984 0 0 984 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1930.0 Unf 1.0 308.0 TA TA N 0 0 164 0 0 0 NaN NaN NaN 0 3 2006 ConLI Family NaN
2801 2802 50 RL 82.0 12375 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Feedr Norm 1Fam 1.5Fin 5 5 1951 1951 Gable CompShg HdBoard HdBoard Stone 41.0 TA Fa CBlock TA TA No BLQ 329.0 Unf 0.0 477.0 806.0 GasA ... Y SBrkr 1081 341 0 1422 1.0 0.0 1 0 3 1 TA 7 Typ 1 TA Detchd 1951.0 Unf 1.0 288.0 TA TA Y 0 0 0 0 0 0 NaN GdWo NaN 0 6 2006 WD Normal NaN
2802 2803 90 RL 120.0 11136 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Feedr Feedr Duplex 1Story 6 5 1964 1964 Gable CompShg BrkFace BrkFace None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 1921.0 1921.0 GasA ... Y SBrkr 1921 0 0 1921 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN Detchd 1964.0 Unf 2.0 576.0 TA TA Y 0 180 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2803 2804 20 RL 100.0 21370 Pave NaN Reg Lvl AllPub FR2 Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1950 1950 Gable CompShg Wd Sdng MetalSd None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y FuseA 1640 0 0 1640 0.0 0.0 1 0 3 1 TA 7 Min1 1 Gd Attchd 1950.0 RFn 2.0 394.0 TA TA Y 0 0 225 0 0 0 NaN NaN Shed 600 6 2006 WD Normal NaN
2804 2805 30 RL 55.0 8250 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 7 1935 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N SBrkr 1032 0 0 1032 0.0 0.0 1 0 2 1 TA 6 Typ 1 TA Detchd 1939.0 Unf 1.0 260.0 TA TA Y 0 0 121 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2805 2806 30 RL 50.0 5220 Pave NaN IR1 Lvl AllPub Inside Gtl SWISU Norm Norm 1Fam 1Story 5 3 1936 1950 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 830.0 830.0 GasA ... Y SBrkr 879 0 0 879 0.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1936.0 Unf 1.0 180.0 TA TA P 0 108 0 0 0 0 NaN NaN NaN 0 1 2006 WD Normal NaN
2806 2807 20 RL 50.0 5500 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Norm Norm 1Fam 1Story 7 5 2004 2004 Shed CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd Gd Mn GLQ 510.0 LwQ 373.0 190.0 1073.0 GasA ... Y SBrkr 1073 0 0 1073 1.0 0.0 2 0 2 1 TA 4 Typ 0 NaN Detchd 2004.0 Unf 1.0 246.0 TA TA Y 0 120 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2807 2808 20 RL NaN 11327 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 6 1967 1967 Hip CompShg HdBoard HdBoard BrkFace 305.0 TA TA CBlock TA TA Av ALQ 779.0 Unf 0.0 285.0 1064.0 GasA ... Y SBrkr 1064 0 0 1064 0.0 1.0 1 0 3 1 TA 6 Typ 1 TA Attchd 1967.0 Unf 2.0 528.0 TA TA Y 314 48 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2808 2809 80 RL 80.0 10366 Pave NaN IR1 Lvl AllPub Corner Gtl Sawyer Norm Norm 1Fam SLvl 6 7 1964 1964 Gable CompShg HdBoard Plywood None 0.0 TA Gd CBlock TA TA Av GLQ 456.0 Unf 0.0 456.0 912.0 GasA ... Y SBrkr 934 0 0 934 0.0 1.0 1 0 2 1 TA 4 Typ 0 NaN Attchd 1964.0 Unf 1.0 336.0 TA TA Y 77 0 0 0 0 0 NaN GdPrv Shed 500 7 2006 WD Normal NaN
2809 2810 20 RL 75.0 9000 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Norm Norm 1Fam 1Story 5 6 1966 1966 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No ALQ 773.0 Unf 0.0 286.0 1059.0 GasA ... Y SBrkr 1059 0 0 1059 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1966.0 Fin 1.0 286.0 TA TA Y 0 88 0 0 0 0 NaN GdWo NaN 0 6 2006 WD Abnorml NaN
2810 2811 20 RL NaN 9535 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1967 1967 Gable CompShg HdBoard HdBoard BrkFace 450.0 TA TA CBlock TA TA No BLQ 194.0 LwQ 982.0 0.0 1176.0 GasA ... Y SBrkr 1458 0 0 1458 1.0 0.0 1 1 3 1 TA 7 Typ 1 TA Attchd 1967.0 Unf 2.0 512.0 TA TA Y 284 0 0 0 0 0 NaN MnPrv NaN 0 7 2006 WD Normal NaN
2811 2812 80 RL NaN 7176 Pave NaN IR1 Lvl AllPub CulDSac Gtl Sawyer Norm Norm 1Fam SLvl 6 6 1978 1978 Gable CompShg HdBoard HdBoard BrkFace 200.0 TA TA CBlock TA Gd Gd GLQ 794.0 Unf 0.0 166.0 960.0 GasA ... Y SBrkr 1040 0 0 1040 1.0 0.0 1 0 3 1 TA 6 Typ 1 Fa Detchd 1979.0 Unf 2.0 616.0 TA TA Y 131 0 0 0 180 0 NaN GdPrv NaN 0 7 2006 WD Normal NaN
2812 2813 90 RL NaN 9662 Pave NaN IR1 Lvl AllPub Inside Gtl Sawyer Norm Norm Duplex 1Story 5 4 1977 1977 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA No Unf 0.0 Unf 0.0 1967.0 1967.0 GasA ... Y SBrkr 1967 0 0 1967 0.0 0.0 2 0 6 2 TA 10 Typ 0 NaN Attchd 1977.0 Fin 2.0 580.0 TA TA Y 170 0 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal NaN
2813 2814 90 RL 75.0 8235 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm Duplex 1Story 5 4 1977 1977 Gable CompShg Plywood Plywood BrkFace 99.0 TA TA CBlock TA TA No Rec 483.0 Unf 0.0 1466.0 1949.0 GasA ... Y SBrkr 1949 0 0 1949 0.0 0.0 2 0 6 2 TA 10 Typ 0 NaN Attchd 1977.0 RFn 2.0 586.0 TA TA Y 32 0 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2814 2815 30 RL NaN 17529 Pave NaN Reg Lvl AllPub Inside Gtl Sawyer Norm Norm 1Fam 1Story 5 5 1924 1950 Gable CompShg BrkFace Wd Sdng Stone 65.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 872.0 872.0 GasA ... N FuseF 872 0 0 872 0.0 0.0 1 0 2 1 Fa 5 Mod 1 Gd Detchd 1924.0 Unf 1.0 322.0 Fa Fa N 0 0 116 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2815 2816 20 RL NaN 20355 Pave NaN Reg Low AllPub Inside Mod ClearCr Norm Norm 1Fam 1Story 7 6 1967 1967 Gable Tar&Grv Plywood Plywood BrkFace 123.0 TA TA CBlock Gd TA Av Rec 810.0 ALQ 826.0 229.0 1865.0 GasA ... Y SBrkr 1830 0 0 1830 1.0 0.0 1 0 2 1 TA 6 Typ 2 Gd Attchd 1967.0 Unf 2.0 521.0 TA TA Y 0 115 168 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2816 2817 20 RL 87.0 13050 Pave NaN Reg Low AllPub Inside Mod ClearCr Norm Norm 1Fam 1Story 5 6 1963 1963 Flat Tar&Grv WdShing Wd Shng None 0.0 TA TA CBlock Gd TA Av Rec 104.0 ALQ 850.0 46.0 1000.0 GasA ... Y SBrkr 1000 0 0 1000 1.0 0.0 1 0 1 1 TA 4 Typ 2 TA Attchd 1993.0 Unf 2.0 575.0 TA TA Y 238 0 148 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2817 2818 85 RL 72.0 10820 Pave NaN Reg Lvl AllPub Corner Gtl Sawyer Feedr Norm 1Fam SFoyer 5 7 1971 1972 Gable CompShg HdBoard HdBoard BrkFace 153.0 TA TA PConc Gd TA Av GLQ 535.0 Rec 159.0 88.0 782.0 GasA ... Y SBrkr 810 0 0 810 1.0 0.0 1 0 2 1 TA 4 Typ 0 NaN Detchd 1973.0 Unf 2.0 576.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 6 2006 WD Normal NaN
2818 2819 150 RL NaN 1700 Pave NaN Reg HLS AllPub Inside Gtl ClearCr Norm Norm Twnhs 1.5Fin 7 5 1980 1981 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Mn GLQ 397.0 Unf 0.0 33.0 430.0 GasA ... Y SBrkr 880 680 140 1700 1.0 0.0 2 1 2 1 Gd 7 Typ 0 NaN Basment 1980.0 Fin 1.0 450.0 Gd TA Y 188 36 0 0 200 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2819 2820 20 RL 75.0 9375 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 1Story 4 5 1954 1954 Gable CompShg MetalSd MetalSd None 0.0 TA Gd CBlock TA TA No Rec 799.0 Unf 0.0 168.0 967.0 GasA ... Y SBrkr 1350 0 0 1350 0.0 0.0 1 1 3 1 TA 6 Typ 1 Gd Attchd 1954.0 RFn 2.0 504.0 TA TA Y 237 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2820 2821 50 RL 62.0 6488 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 5 5 1942 1950 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA BrkTil TA TA No LwQ 230.0 Unf 0.0 569.0 799.0 GasA ... N FuseA 799 351 0 1150 0.0 0.0 1 0 3 1 TA 6 Mod 2 TA BuiltIn 1942.0 Unf 1.0 215.0 TA TA Y 264 0 0 0 0 0 NaN NaN NaN 0 3 2006 WD Family NaN
2821 2822 70 RL 114.0 19950 Pave NaN Reg Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 2Story 6 7 1928 1950 Gable CompShg WdShing Plywood None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 672.0 672.0 GasA ... Y SBrkr 1337 672 0 2009 0.0 0.0 2 0 4 1 TA 8 Typ 2 Gd 2Types 1928.0 Unf 3.0 795.0 TA TA P 0 42 0 0 180 0 NaN NaN NaN 0 12 2006 WD Normal NaN
2822 2823 75 RL 60.0 19800 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 2.5Unf 6 8 1935 1990 Gable CompShg BrkFace Wd Sdng None 0.0 TA TA BrkTil TA TA No Rec 425.0 Unf 0.0 1411.0 1836.0 GasA ... Y SBrkr 1836 1836 0 3672 0.0 0.0 3 1 5 1 Gd 7 Typ 2 Gd Detchd 1993.0 Unf 2.0 836.0 TA TA Y 684 80 32 0 0 0 NaN NaN NaN 0 12 2006 WD Normal NaN
2823 2824 80 RL 78.0 11679 Pave NaN IR1 Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam SLvl 5 5 1962 1962 Gable CompShg Plywood Plywood Stone 96.0 TA TA CBlock TA TA Gd ALQ 612.0 Rec 1164.0 0.0 1776.0 GasA ... Y SBrkr 1560 0 0 1560 0.0 1.0 2 0 3 1 TA 6 Min2 1 Fa Attchd 1962.0 Fin 2.0 528.0 TA TA Y 453 253 144 0 0 0 NaN MnPrv NaN 0 5 2006 WD Normal NaN
2824 2825 20 RL 80.0 12048 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 6 1952 2002 Gable CompShg Wd Sdng Wd Sdng BrkFace 232.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y SBrkr 1488 0 0 1488 0.0 0.0 1 0 3 1 TA 7 Typ 1 Ex Attchd 2002.0 RFn 2.0 569.0 TA TA Y 0 189 36 0 348 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2825 2826 20 RL 70.0 10519 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 8 1955 1999 Hip CompShg MetalSd MetalSd Stone 164.0 TA TA CBlock TA TA Mn Unf 0.0 Unf 0.0 1057.0 1057.0 GasA ... Y SBrkr 1057 0 0 1057 0.0 1.0 1 0 3 1 Gd 6 Typ 0 NaN Attchd 1955.0 Unf 1.0 288.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal NaN
2826 2827 50 RL 75.0 9525 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 6 5 1953 1953 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA No LwQ 468.0 Unf 0.0 532.0 1000.0 GasA ... Y SBrkr 1068 541 0 1609 0.0 0.0 1 1 5 1 TA 7 Typ 0 NaN Attchd 1953.0 Unf 1.0 305.0 Fa TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2827 2828 60 RL 88.0 12128 Pave NaN IR1 Bnk AllPub Inside Gtl SawyerW Norm Norm 1Fam 2Story 6 4 1989 1989 Gable CompShg HdBoard HdBoard BrkFace 232.0 Gd TA CBlock Gd TA No ALQ 549.0 Unf 0.0 319.0 868.0 GasA ... Y SBrkr 1313 1246 0 2559 0.0 0.0 2 1 4 1 Ex 9 Typ 1 TA Attchd 1989.0 RFn 2.0 506.0 TA TA Y 0 245 0 0 168 0 NaN MnPrv NaN 0 11 2006 WD Abnorml NaN
2828 2829 90 RL 73.0 9069 Pave NaN Reg Lvl AllPub Inside Gtl SawyerW Norm Norm Duplex SFoyer 6 8 1993 1993 Gable CompShg HdBoard HdBoard None 0.0 Gd Gd PConc Gd TA Av LwQ 261.0 GLQ 1083.0 0.0 1344.0 GasA ... Y SBrkr 1440 0 0 1440 2.0 0.0 2 0 2 2 Gd 8 Typ 0 NaN Attchd 1993.0 Unf 4.0 920.0 TA TA Y 288 0 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2829 2830 60 RL 133.0 11003 Pave NaN IR2 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1308.0 1308.0 GasA ... Y SBrkr 1308 568 0 1876 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN BuiltIn 2005.0 RFn 3.0 848.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial NaN
2830 2831 20 RL 64.0 7488 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av GLQ 393.0 Unf 0.0 815.0 1208.0 GasA ... Y SBrkr 1208 0 0 1208 0.0 0.0 2 0 2 1 Gd 6 Typ 0 NaN Attchd 2005.0 RFn 2.0 632.0 TA TA Y 105 58 0 0 0 0 NaN NaN NaN 0 2 2006 WD Abnorml NaN
2831 2832 20 RL 90.0 13377 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 6 5 2006 2006 Hip CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 1576.0 Unf 0.0 260.0 1836.0 GasA ... Y SBrkr 1846 0 0 1846 1.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2006.0 RFn 2.0 495.0 TA TA Y 0 32 0 0 0 0 NaN NaN NaN 0 7 2006 New Partial NaN
2832 2833 20 RL 78.0 11645 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2005 2006 Hip CompShg VinylSd VinylSd BrkFace 198.0 Gd TA PConc Ex TA Gd GLQ 1122.0 Unf 0.0 448.0 1570.0 GasA ... Y SBrkr 1590 0 0 1590 1.0 0.0 2 1 2 1 Ex 6 Typ 0 NaN Attchd 2005.0 Fin 3.0 754.0 TA TA Y 176 80 0 0 0 0 NaN NaN NaN 0 8 2006 New Partial NaN
2833 2834 60 RL 91.0 10984 Pave NaN IR1 Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Gd Unf 0.0 Unf 0.0 945.0 945.0 GasA ... Y SBrkr 945 864 0 1809 0.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 2005.0 RFn 2.0 638.0 TA TA Y 144 54 0 0 0 0 NaN NaN NaN 0 5 2006 New Partial NaN
2834 2835 20 RL 78.0 9316 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd BrkFace 140.0 Gd TA PConc Gd TA Gd GLQ 56.0 Unf 0.0 1558.0 1614.0 GasA ... Y SBrkr 1614 0 0 1614 0.0 0.0 2 0 3 1 Gd 7 Typ 1 Gd Attchd 2005.0 Fin 2.0 576.0 TA TA Y 100 45 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal NaN
2835 2836 60 RL 78.0 9316 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd BrkFace 532.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 784.0 784.0 GasA ... Y SBrkr 784 812 0 1596 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2005.0 RFn 2.0 610.0 TA TA Y 144 45 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2836 2837 20 RL 80.0 12000 Pave NaN Reg Lvl AllPub Inside Gtl ClearCr Norm Norm 1Fam 1Story 6 5 1968 1968 Gable CompShg Plywood Plywood None 0.0 TA Fa CBlock Gd Fa No LwQ 853.0 Unf 0.0 535.0 1388.0 GasA ... Y SBrkr 1388 0 0 1388 1.0 0.0 2 0 3 1 TA 6 Typ 1 Po Attchd 1968.0 RFn 2.0 522.0 TA TA Y 0 58 0 0 0 0 NaN NaN NaN 0 7 2006 COD Abnorml NaN
2837 2838 20 RL 95.0 13015 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 5 6 1996 1996 Gable CompShg VinylSd VinylSd None 0.0 TA Gd PConc Gd TA No Unf 0.0 Unf 0.0 1100.0 1100.0 GasA ... Y SBrkr 1100 0 0 1100 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Attchd 1996.0 RFn 2.0 462.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2838 2839 60 RL 65.0 12438 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr PosN Norm 1Fam 2Story 6 5 1995 1995 Gable CompShg VinylSd VinylSd BrkFace 68.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 781.0 781.0 GasA ... Y SBrkr 795 704 0 1499 0.0 0.0 2 1 3 1 Gd 6 Typ 1 TA Attchd 1995.0 RFn 2.0 473.0 TA TA Y 413 91 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal NaN
2839 2840 20 RL NaN 8685 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 1Story 7 5 1998 1998 Gable CompShg VinylSd VinylSd None 0.0 TA TA PConc Gd TA Mn GLQ 846.0 Unf 0.0 579.0 1425.0 GasA ... Y SBrkr 1425 0 0 1425 1.0 0.0 2 0 3 1 TA 5 Typ 0 NaN Attchd 1998.0 RFn 2.0 591.0 TA TA Y 0 130 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2840 2841 60 RL 68.0 9272 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1999 1999 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 500.0 Unf 0.0 342.0 842.0 GasA ... Y SBrkr 856 893 0 1749 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 1999.0 RFn 2.0 515.0 TA TA Y 140 85 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2841 2842 60 RL 72.0 13426 Pave NaN IR1 Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1999 2000 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Mn GLQ 894.0 Unf 0.0 57.0 951.0 GasA ... Y SBrkr 951 828 0 1779 1.0 0.0 2 1 3 1 Gd 7 Typ 1 TA Attchd 1999.0 Fin 2.0 586.0 TA TA Y 208 107 0 0 0 0 NaN NaN NaN 0 9 2006 WD Normal NaN
2842 2843 60 RL 50.0 8340 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 6 6 1977 1977 Gable CompShg HdBoard Plywood BrkFace 62.0 TA TA CBlock Gd TA Av GLQ 509.0 Unf 0.0 166.0 675.0 GasA ... Y SBrkr 686 702 0 1388 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN Attchd 1977.0 Unf 1.0 317.0 TA TA Y 406 36 0 0 0 0 NaN NaN NaN 0 12 2006 WD Normal NaN
2843 2844 80 RL 42.0 10385 Pave NaN IR1 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam SLvl 6 6 1978 1978 Gable CompShg HdBoard HdBoard BrkFace 123.0 TA TA CBlock TA Gd Av ALQ 595.0 LwQ 400.0 0.0 995.0 GasA ... Y SBrkr 1282 0 0 1282 0.0 1.0 2 0 3 1 TA 6 Typ 0 NaN Detchd 1989.0 Unf 3.0 672.0 Fa TA Y 386 0 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2844 2845 20 RL 60.0 7200 Pave NaN Reg Low AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 5 8 1972 1972 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No BLQ 437.0 Unf 0.0 427.0 864.0 GasA ... Y SBrkr 864 0 0 864 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Detchd 1977.0 Unf 1.0 297.0 TA TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 3 2006 WD Normal NaN
2845 2846 60 RL NaN 9930 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd BrkFace 199.0 Gd TA PConc Gd TA No GLQ 456.0 Unf 0.0 370.0 826.0 GasA ... Y SBrkr 878 884 0 1762 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2002.0 Fin 2.0 591.0 TA TA Y 320 54 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2846 2847 60 RL 45.0 9468 Pave NaN IR2 Lvl AllPub CulDSac Gtl CollgCr Norm Norm 1Fam 2Story 6 5 1999 1999 Gable CompShg VinylSd VinylSd BrkFace 148.0 TA TA PConc Gd TA Mn GLQ 639.0 Unf 0.0 201.0 840.0 GasA ... Y SBrkr 840 915 0 1755 1.0 0.0 2 1 3 1 TA 7 Typ 1 TA Attchd 1999.0 RFn 2.0 530.0 TA TA Y 176 73 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal NaN
2847 2848 20 RL NaN 11088 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 1Story 8 5 2002 2002 Hip CompShg Stucco Stucco None 0.0 Gd TA PConc Gd TA No GLQ 872.0 Unf 0.0 476.0 1348.0 GasA ... Y SBrkr 1358 0 0 1358 1.0 0.0 1 1 1 1 Gd 5 Typ 1 TA Attchd 2002.0 Unf 2.0 418.0 TA TA Y 68 166 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2848 2849 60 RL 70.0 8726 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2002 2002 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 872.0 872.0 GasA ... Y SBrkr 872 1037 0 1909 0.0 0.0 2 1 4 1 Gd 8 Typ 0 NaN BuiltIn 2002.0 RFn 2.0 529.0 TA TA Y 0 108 0 0 0 0 NaN NaN NaN 0 9 2006 WD Normal NaN
2849 2850 60 RL 67.0 10566 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 8 5 1999 1999 Gable CompShg VinylSd VinylSd BrkFace 261.0 Gd TA PConc Gd TA Av GLQ 920.0 Unf 0.0 170.0 1090.0 GasA ... Y SBrkr 1090 1124 0 2214 1.0 0.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1999.0 Fin 3.0 646.0 TA TA Y 197 80 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2850 2851 60 RL NaN 21533 Pave NaN IR2 Lvl AllPub FR2 Gtl CollgCr Feedr Norm 1Fam 2Story 7 5 1996 1997 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 1065.0 1065.0 GasA ... Y SBrkr 1065 984 0 2049 0.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 1997.0 Unf 2.0 467.0 TA TA Y 120 48 0 0 0 0 NaN NaN NaN 0 8 2006 WD Normal NaN
2851 2852 60 RL 90.0 11250 Pave NaN IR1 Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1998 1998 Gable CompShg VinylSd VinylSd BrkFace 227.0 TA TA PConc Gd TA Mn ALQ 796.0 Unf 0.0 258.0 1054.0 GasA ... Y SBrkr 1070 869 0 1939 0.0 1.0 2 1 3 1 Gd 8 Typ 1 TA Attchd 1998.0 RFn 3.0 555.0 TA TA Y 128 84 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2852 2853 60 RL 90.0 11250 Pave NaN Reg Lvl AllPub Corner Gtl CollgCr Norm Norm 1Fam 2Story 7 5 1995 1996 Gable CompShg VinylSd VinylSd None 0.0 Gd Gd PConc Gd Gd Av GLQ 685.0 Unf 0.0 245.0 930.0 GasA ... Y SBrkr 950 1045 0 1995 1.0 0.0 2 1 4 1 Gd 8 Typ 1 TA Attchd 1995.0 RFn 2.0 610.0 TA TA Y 275 170 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2853 2854 120 RM 37.0 4435 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm TwnhsE 1Story 6 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 170.0 Gd TA PConc Gd TA Av GLQ 717.0 Unf 0.0 131.0 848.0 GasA ... Y SBrkr 848 0 0 848 1.0 0.0 1 0 1 1 Gd 4 Typ 0 NaN Attchd 2003.0 Fin 2.0 420.0 TA TA Y 140 0 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2854 2855 20 RL 70.0 8810 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA No GLQ 1000.0 Unf 0.0 390.0 1390.0 GasA ... Y SBrkr 1390 0 0 1390 1.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2003.0 RFn 2.0 545.0 TA TA Y 0 68 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal NaN
2855 2856 60 RL 74.0 8581 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2006 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd Gd Mn Unf 0.0 Unf 0.0 851.0 851.0 GasA ... Y SBrkr 851 886 0 1737 0.0 0.0 2 1 3 1 Gd 7 Typ 0 NaN Attchd 2006.0 RFn 2.0 578.0 TA TA Y 0 105 0 0 0 0 NaN NaN NaN 0 8 2006 New Partial NaN
2856 2857 60 RL 70.0 8400 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2005 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Av Unf 0.0 Unf 0.0 784.0 784.0 GasA ... Y SBrkr 784 827 0 1611 0.0 0.0 2 1 3 1 Gd 6 Typ 0 NaN Attchd 2005.0 RFn 2.0 572.0 TA TA Y 144 36 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal NaN
2857 2858 20 RL 65.0 8772 Pave NaN Reg Lvl AllPub FR2 Gtl CollgCr Norm Norm 1Fam 1Story 7 5 2005 2006 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Gd TA Mn GLQ 996.0 Unf 0.0 340.0 1336.0 GasA ... Y SBrkr 1336 0 0 1336 1.0 0.0 2 0 3 1 Gd 6 Typ 0 NaN Attchd 2005.0 Unf 2.0 502.0 TA TA Y 136 43 0 0 0 0 NaN NaN NaN 0 9 2006 New Partial NaN
2858 2859 70 RL 67.0 8777 Pave NaN Reg Bnk AllPub Inside Gtl Edwards Feedr Norm 1Fam 2Story 4 6 1910 2000 Gable CompShg Plywood Plywood None 0.0 TA Gd CBlock Gd TA No Rec 173.0 BLQ 337.0 166.0 676.0 GasA ... Y SBrkr 760 676 0 1436 1.0 0.0 2 0 3 1 TA 6 Min1 0 NaN Attchd 1950.0 Unf 2.0 528.0 TA TA Y 147 0 0 0 0 0 NaN NaN Shed 420 10 2006 WD Normal NaN
2859 2860 90 RL 38.0 7840 Pave NaN IR1 Lvl AllPub CulDSac Gtl Edwards Norm Norm Duplex SFoyer 6 5 1975 1975 Flat Tar&Grv Plywood Wd Shng BrkFace 355.0 TA TA CBlock Gd TA Gd GLQ 976.0 Unf 0.0 0.0 976.0 GasA ... Y SBrkr 1012 0 0 1012 0.0 2.0 2 0 4 0 TA 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2006 WD AdjLand NaN
2860 2861 20 RL 73.0 16133 Pave NaN Reg HLS AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 5 4 1969 1969 Gable CompShg HdBoard Plywood None 0.0 TA TA CBlock Gd TA Mn ALQ 847.0 Unf 0.0 329.0 1176.0 GasA ... Y SBrkr 1176 0 0 1176 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Attchd 1969.0 Unf 1.0 360.0 TA TA Y 0 92 0 0 112 0 NaN NaN NaN 0 12 2006 WD Abnorml NaN
2861 2862 60 RL 62.0 7162 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 2Story 7 5 2003 2004 Hip CompShg HdBoard Stucco BrkFace 190.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 796.0 796.0 GasA ... Y SBrkr 806 918 0 1724 0.0 0.0 2 1 3 1 Gd 8 Typ 1 Gd BuiltIn 2003.0 Fin 2.0 616.0 TA TA Y 168 57 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2862 2863 20 RL 75.0 8050 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 6 5 2002 2002 Gable CompShg VinylSd VinylSd NaN NaN TA TA PConc Gd TA Av GLQ 475.0 ALQ 297.0 142.0 914.0 GasA ... Y SBrkr 914 0 0 914 1.0 0.0 1 0 2 1 Gd 4 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 32 0 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2863 2864 60 RL 90.0 11060 Pave NaN IR1 Lvl AllPub Corner Gtl Edwards Norm Norm 1Fam 2Story 7 5 2003 2005 Gable CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA No Unf 0.0 Unf 0.0 1150.0 1150.0 GasA ... Y SBrkr 1164 1150 0 2314 0.0 0.0 2 1 3 1 Gd 9 Typ 1 Ex BuiltIn 2003.0 Fin 2.0 502.0 TA TA Y 0 274 0 0 0 0 NaN NaN NaN 0 2 2006 ConLD Normal NaN
2864 2865 180 RM 35.0 3675 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm TwnhsE SFoyer 6 5 2005 2006 Gable CompShg VinylSd VinylSd BrkFace 82.0 TA TA PConc Gd TA Gd GLQ 547.0 Unf 0.0 0.0 547.0 GasA ... Y SBrkr 1072 0 0 1072 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Basment 2005.0 Fin 2.0 525.0 TA TA Y 0 44 0 0 0 0 NaN NaN NaN 0 10 2006 New Partial NaN
2865 2866 160 RM 24.0 2522 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm Twnhs 2Story 7 5 2004 2004 Gable CompShg VinylSd VinylSd Stone 50.0 Gd TA PConc Gd TA No Unf 0.0 Unf 0.0 970.0 970.0 GasA ... Y SBrkr 970 739 0 1709 0.0 0.0 2 0 3 1 Gd 7 Maj1 0 NaN Detchd 2004.0 Unf 2.0 380.0 TA TA Y 0 40 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2866 2867 50 RL 56.0 6956 Pave NaN Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 4 7 1948 1950 Gable CompShg VinylSd VinylSd None 0.0 TA Gd CBlock Fa TA Mn Unf 0.0 Unf 0.0 624.0 624.0 GasA ... Y SBrkr 624 312 0 936 0.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1948.0 Unf 1.0 265.0 TA Po Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2867 2868 50 RL 72.0 7822 Pave NaN Reg Bnk AllPub Corner Gtl Edwards Artery Norm 1Fam 1.5Fin 6 3 1915 1950 Gable CompShg AsbShng AsbShng None 0.0 TA Fa BrkTil Fa Fa No Unf 0.0 Unf 0.0 832.0 832.0 GasA ... Y FuseF 846 492 0 1338 0.0 0.0 2 0 3 1 TA 7 Typ 0 NaN Detchd 1974.0 Unf 2.0 528.0 TA TA N 0 0 208 0 0 0 NaN GdPrv NaN 0 5 2006 WD AdjLand NaN
2868 2869 50 RL 62.0 8707 Pave NaN Reg Lvl AllPub FR2 Gtl Edwards Feedr Norm 1Fam 1.5Fin 4 5 1924 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 1093.0 1093.0 GasA ... N FuseF 1093 576 0 1669 0.0 0.0 1 1 4 1 TA 9 Min2 0 NaN Attchd 1924.0 Unf 1.0 288.0 Fa TA Y 0 0 56 0 0 0 NaN NaN NaN 0 5 2006 WD AdjLand NaN
2869 2870 20 RL 60.0 16012 Pave NaN IR1 Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1Story 4 4 1954 1968 Hip CompShg Wd Sdng Wd Sdng BrkFace 60.0 TA TA CBlock TA TA No Rec 691.0 Unf 0.0 263.0 954.0 GasA ... Y SBrkr 1482 0 0 1482 0.0 1.0 2 0 3 1 TA 6 Min1 1 Gd 2Types 1956.0 Unf 2.0 609.0 TA TA Y 0 30 0 0 0 0 NaN MnPrv NaN 0 10 2006 WD Abnorml NaN
2870 2871 50 RL 45.0 8248 Pave Grvl Reg Lvl AllPub Inside Gtl Edwards Norm Norm 1Fam 1.5Fin 4 4 1922 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 864.0 864.0 GasA ... N SBrkr 964 0 450 1414 0.0 0.0 1 0 3 1 TA 8 Typ 1 Gd NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 112 0 0 0 NaN NaN NaN 0 9 2006 COD Abnorml NaN
2871 2872 30 RL 60.0 8088 Pave Grvl Reg Lvl AllPub Inside Gtl Edwards Feedr Norm 1Fam 1Story 2 3 1922 1955 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 498.0 498.0 GasA ... N FuseF 498 0 0 498 0.0 0.0 1 0 1 1 TA 3 Typ 0 NaN Detchd 1922.0 Unf 1.0 216.0 Fa Fa N 0 0 100 0 0 0 NaN NaN NaN 0 2 2006 ConLD Normal NaN
2872 2873 50 RL 76.0 11388 Pave NaN Reg Low AllPub Inside Mod Edwards Norm Norm 1Fam 1.5Fin 4 7 1910 1993 Gable CompShg VinylSd Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 616.0 616.0 GasA ... N SBrkr 1055 218 0 1273 0.0 0.0 1 0 3 1 Gd 5 Min2 0 NaN Detchd 1910.0 Unf 1.0 275.0 TA Fa N 212 0 0 0 0 0 NaN NaN NaN 0 9 2006 WD Normal NaN
2873 2874 50 RL 60.0 10890 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Norm Norm 1Fam 1.5Fin 5 5 1938 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil Fa TA No LwQ 930.0 Unf 0.0 128.0 1058.0 GasA ... Y SBrkr 1058 493 0 1551 1.0 0.0 2 0 3 1 Fa 6 Typ 0 NaN Detchd 1938.0 Unf 1.0 240.0 Fa TA Y 0 0 0 0 0 0 NaN MnPrv NaN 0 7 2006 WD Normal NaN
2874 2875 190 RH 58.0 6430 Pave NaN Reg Bnk AllPub Corner Gtl SWISU Feedr Norm 2fmCon 1.5Fin 6 6 1945 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock TA TA Av BLQ 780.0 Unf 0.0 0.0 780.0 GasA ... N FuseF 816 524 0 1340 1.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Attchd 1945.0 Unf 1.0 440.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 7 2006 WD Abnorml NaN
2875 2876 70 RL 43.0 7000 Pave NaN Reg Lvl AllPub Inside Gtl SWISU Feedr Norm 1Fam 2Story 7 8 1926 1997 Gable CompShg Wd Sdng Stucco None 0.0 TA TA BrkTil TA TA No ALQ 424.0 Unf 0.0 200.0 624.0 GasA ... Y SBrkr 743 736 0 1479 1.0 0.0 1 0 3 1 Gd 6 Typ 2 Gd Detchd 1926.0 Unf 1.0 312.0 TA TA Y 530 0 56 0 0 0 NaN MnPrv NaN 0 5 2006 WD Normal NaN
2876 2877 70 RL 69.0 4899 Pave NaN Reg HLS AllPub Corner Gtl SWISU Norm Norm 1Fam 2Story 6 8 1920 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No BLQ 305.0 Unf 0.0 450.0 755.0 GasA ... Y SBrkr 755 755 0 1510 0.0 0.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1920.0 Unf 1.0 216.0 TA TA Y 0 0 164 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2877 2878 70 RL 54.0 9399 Pave NaN Reg Bnk AllPub Inside Gtl Crawfor Norm Norm 1Fam 2.5Unf 7 8 1919 1950 Gable CompShg MetalSd Stucco None 0.0 TA TA BrkTil TA TA Mn Unf 0.0 Unf 0.0 818.0 818.0 GasA ... Y SBrkr 818 818 0 1636 0.0 0.0 1 1 4 1 Gd 7 Typ 1 Gd Detchd 1919.0 Unf 1.0 288.0 Fa TA N 0 0 212 0 0 0 NaN NaN NaN 0 9 2006 WD Abnorml NaN
2878 2879 50 RL 84.0 10164 Pave NaN Reg Bnk AllPub Inside Gtl SWISU Norm Norm 1Fam 1.5Fin 5 5 1939 1950 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA Fa Av LwQ 646.0 Unf 0.0 346.0 992.0 GasA ... Y SBrkr 992 473 0 1465 0.0 0.0 2 0 3 1 TA 6 Typ 2 TA Detchd 1939.0 Unf 1.0 240.0 TA TA Y 0 126 0 0 0 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2879 2880 50 RL 51.0 6191 Pave NaN Reg Lvl AllPub Corner Gtl SWISU Norm Norm 1Fam 1.5Fin 5 4 1941 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock Fa Fa No LwQ 384.0 Unf 0.0 440.0 824.0 GasA ... N SBrkr 824 464 0 1288 0.0 0.0 1 0 4 1 TA 6 Typ 0 NaN Detchd 1941.0 Unf 1.0 240.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 11 2006 WD Normal NaN
2880 2881 50 RL 66.0 21780 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 6 5 1920 1950 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA PConc TA Fa No Unf 0.0 Unf 0.0 817.0 817.0 GasA ... Y FuseF 940 610 0 1550 0.0 0.0 1 1 3 1 TA 7 Min2 1 TA Detchd 1937.0 Unf 1.0 318.0 TA TA P 0 0 429 0 0 0 NaN MnPrv NaN 0 9 2006 WD Normal NaN
2881 2882 50 RL 80.0 12400 Pave NaN Reg HLS AllPub Inside Mod Crawfor Norm Norm 1Fam 1.5Fin 5 6 1940 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA CBlock Gd TA Mn BLQ 602.0 Unf 0.0 299.0 901.0 GasA ... Y SBrkr 1125 592 0 1717 0.0 0.0 1 1 2 1 TA 7 Typ 1 Gd Attchd 1940.0 Unf 1.0 410.0 TA TA Y 0 0 0 0 113 0 NaN NaN NaN 0 2 2006 WD Normal NaN
2882 2883 50 RL 81.0 8170 Pave NaN IR1 Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 1.5Fin 7 7 1929 1950 Gable CompShg Stucco Wd Sdng BrkFace 270.0 Gd Gd BrkTil TA TA No ALQ 526.0 Unf 0.0 496.0 1022.0 GasA ... Y FuseA 1122 549 0 1671 0.0 0.0 2 0 4 1 TA 7 Typ 1 Gd Detchd 1963.0 Unf 2.0 451.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 2 2006 WD Normal NaN
2883 2884 70 RL 70.0 12320 Pave NaN IR1 HLS AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 7 7 1932 1990 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 637.0 637.0 GasA ... Y SBrkr 959 650 0 1609 0.0 0.0 1 1 3 1 Gd 8 Typ 2 Gd 2Types 1963.0 Unf 3.0 579.0 TA TA Y 0 0 0 0 104 0 NaN GdWo NaN 0 5 2006 WD Normal NaN
2884 2885 70 RL 70.0 14210 Pave NaN IR1 Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 6 7 1930 1959 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA PConc TA TA No Unf 0.0 Unf 0.0 697.0 697.0 GasA ... Y SBrkr 1104 697 0 1801 0.0 0.0 1 1 3 1 TA 8 Typ 1 Gd Attchd 1930.0 Unf 2.0 365.0 Fa TA Y 0 90 0 0 0 0 NaN MnPrv NaN 0 11 2006 WD Normal NaN
2885 2886 60 RL 78.0 15600 Pave NaN Reg Lvl AllPub Inside Gtl Crawfor Norm Norm 1Fam 2Story 5 7 1950 1963 Gable CompShg Wd Sdng Wd Sdng BrkFace 405.0 TA Gd CBlock Gd TA No GLQ 760.0 Unf 0.0 408.0 1168.0 GasA ... Y SBrkr 1278 1037 0 2315 1.0 0.0 2 0 4 1 TA 9 Typ 3 Gd Attchd 1950.0 Fin 1.0 342.0 TA TA Y 0 0 0 0 192 0 NaN NaN NaN 0 7 2006 WD Normal NaN
2886 2887 30 RM 50.0 7288 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Artery Norm 1Fam 1Story 5 6 1942 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock TA TA Mn Rec 305.0 Unf 0.0 671.0 976.0 GasA ... N SBrkr 976 0 0 976 1.0 0.0 1 0 2 1 TA 5 Typ 0 NaN Detchd 1942.0 Unf 1.0 215.0 TA TA N 160 0 0 0 0 0 NaN NaN NaN 0 8 2006 WD AdjLand NaN
2887 2888 50 RM 50.0 7000 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 6 7 1926 1950 Hip CompShg MetalSd MetalSd None 0.0 TA TA PConc TA TA No ALQ 374.0 Unf 0.0 487.0 861.0 GasA ... Y SBrkr 861 424 0 1285 0.0 1.0 1 0 3 1 TA 6 Typ 0 NaN Detchd 1950.0 Fin 2.0 506.0 TA TA Y 96 0 132 0 0 0 NaN MnPrv NaN 0 5 2006 WD Normal NaN
2888 2889 30 RM 61.0 8534 Pave NaN Reg Low AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 4 4 1925 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA BrkTil Fa TA No Unf 0.0 Unf 0.0 432.0 432.0 GasA ... N FuseA 672 0 0 672 0.0 0.0 1 0 2 1 TA 4 Min1 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 112 0 0 0 NaN GdWo NaN 0 6 2006 WD Normal NaN
2889 2890 30 RM 50.0 7030 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1Story 4 6 1925 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA BrkTil TA TA No Unf 0.0 Unf 0.0 641.0 641.0 GasA ... Y SBrkr 641 0 0 641 0.0 0.0 1 0 2 1 Fa 4 Typ 0 NaN Detchd 1925.0 Unf 1.0 272.0 TA TA N 184 0 70 0 0 0 NaN MnPrv NaN 0 3 2006 WD Normal NaN
2890 2891 50 RM 75.0 9060 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 6 5 1957 1957 Gable CompShg MetalSd MetalSd BrkFace 327.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 967.0 967.0 GasA ... Y SBrkr 967 671 0 1638 0.0 0.0 2 0 4 1 Gd 6 Typ 0 NaN Detchd 1957.0 Unf 1.0 384.0 TA TA Y 0 21 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2891 2892 30 C (all) 69.0 12366 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Feedr Norm 1Fam 1Story 3 5 1945 1950 Gable CompShg Wd Sdng Wd Sdng None 0.0 TA TA Slab NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... N SBrkr 729 0 0 729 0.0 0.0 1 0 2 1 TA 5 Mod 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 23 0 0 0 NaN NaN NaN 0 10 2006 WD Abnorml NaN
2892 2893 190 C (all) 50.0 9000 Pave NaN Reg Lvl AllPub Inside Gtl IDOTRR Norm Norm 2fmCon 1.5Fin 5 6 1951 1951 Gable CompShg WdShing Wd Shng None 0.0 Fa Fa CBlock TA TA Mn Unf 0.0 Unf 0.0 660.0 660.0 GasA ... N SBrkr 1060 336 0 1396 0.0 0.0 2 0 4 2 TA 8 Min2 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2006 WD Abnorml NaN
2893 2894 50 C (all) 60.0 8520 Grvl NaN Reg Bnk AllPub Inside Gtl IDOTRR Norm Norm 1Fam 1.5Fin 3 5 1916 1950 Gable CompShg MetalSd MetalSd None 0.0 TA TA PConc Fa Fa No Unf 0.0 Unf 0.0 216.0 216.0 GasA ... N SBrkr 576 360 0 936 0.0 0.0 1 0 2 1 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN N 0 0 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2894 2895 120 RM 41.0 5748 Pave NaN IR1 HLS AllPub Inside Mod Crawfor Norm Norm TwnhsE 1Story 8 5 2005 2006 Hip CompShg CemntBd CmentBd Stone 473.0 Gd TA PConc Ex TA Gd GLQ 1573.0 Unf 0.0 0.0 1573.0 GasA ... Y SBrkr 1778 0 0 1778 2.0 0.0 2 0 2 1 Ex 5 Typ 1 Gd Attchd 2005.0 Fin 2.0 495.0 TA TA Y 123 53 0 0 153 0 NaN NaN NaN 0 2 2006 New Partial NaN
2895 2896 120 RM 44.0 3842 Pave NaN IR1 HLS AllPub Inside Mod Crawfor Norm Norm TwnhsE 1Story 8 5 2004 2005 Hip CompShg CemntBd CmentBd Stone 186.0 Gd TA PConc Ex TA Gd GLQ 1564.0 Unf 0.0 30.0 1594.0 GasA ... Y SBrkr 1646 0 0 1646 1.0 1.0 2 0 2 1 Gd 5 Typ 1 Gd Attchd 2004.0 Fin 2.0 525.0 TA TA Y 128 53 0 0 155 0 NaN NaN NaN 0 12 2006 WD Normal NaN
2896 2897 20 RL 69.0 23580 Pave NaN IR1 Lvl AllPub Inside Mod Mitchel Norm Norm 1Fam 1Story 6 6 1979 1979 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock Gd TA Gd GLQ 776.0 Unf 0.0 849.0 1625.0 GasA ... Y SBrkr 1625 0 0 1625 0.0 1.0 2 0 3 1 Fa 6 Typ 1 TA Attchd 1979.0 Fin 2.0 576.0 TA TA Y 136 28 0 0 0 0 NaN NaN NaN 0 9 2006 WD Normal NaN
2897 2898 90 RL 65.0 8385 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm Duplex 1Story 6 5 1978 1978 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA Mn Unf 0.0 Unf 0.0 1664.0 1664.0 GasA ... Y SBrkr 1664 0 0 1664 0.0 0.0 2 0 4 2 TA 10 Typ 0 NaN 2Types 1978.0 Unf 2.0 616.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal NaN
2898 2899 20 RL 70.0 9116 Pave NaN Reg Lvl AllPub Corner Gtl Mitchel Norm Norm 1Fam 1Story 8 5 2001 2001 Hip CompShg VinylSd VinylSd None 0.0 Gd TA PConc Ex TA No Unf 0.0 Unf 0.0 1491.0 1491.0 GasA ... Y SBrkr 1491 0 0 1491 0.0 0.0 2 0 3 1 Gd 7 Typ 0 NaN Attchd 2001.0 RFn 2.0 490.0 TA TA Y 120 100 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2899 2900 80 RL 140.0 11080 Pave NaN Reg Lvl AllPub Corner Gtl Mitchel Norm Norm 1Fam SLvl 6 6 1975 1975 Gable CompShg Plywood Plywood BrkFace 257.0 TA TA CBlock TA TA Av GLQ 576.0 Unf 0.0 552.0 1128.0 GasA ... Y SBrkr 1210 0 0 1210 1.0 0.0 2 0 3 1 TA 6 Typ 0 NaN Attchd 1975.0 Unf 2.0 528.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2900 2901 20 RL NaN 50102 Pave NaN IR1 Low AllPub Inside Mod Timber Norm Norm 1Fam 1Story 6 5 1958 1958 Gable Tar&Grv Plywood Plywood None 0.0 TA TA CBlock Gd TA Gd BLQ 909.0 Unf 0.0 723.0 1632.0 GasA ... Y SBrkr 1650 0 0 1650 1.0 0.0 1 0 2 1 TA 6 Typ 2 Gd Attchd 1958.0 Unf 2.0 518.0 TA TA Y 0 0 0 0 138 0 NaN NaN NaN 0 3 2006 WD Alloca NaN
2901 2902 20 RL NaN 8098 Pave NaN IR1 Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 6 5 2000 2000 Gable CompShg VinylSd VinylSd None 0.0 Gd TA Wood Gd TA Av GLQ 1136.0 BLQ 116.0 129.0 1381.0 GasA ... Y SBrkr 1403 0 0 1403 1.0 0.0 2 0 2 1 Gd 5 Typ 0 NaN Attchd 2000.0 Unf 2.0 470.0 TA TA Y 0 173 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal NaN
2902 2903 20 RL 95.0 13618 Pave NaN Reg Lvl AllPub Corner Gtl Timber Norm Norm 1Fam 1Story 8 5 2005 2006 Gable CompShg VinylSd VinylSd Stone 198.0 Gd TA PConc Ex Gd Av GLQ 1350.0 Unf 0.0 378.0 1728.0 GasA ... Y SBrkr 1960 0 0 1960 1.0 0.0 2 0 3 1 Gd 8 Typ 2 Gd Attchd 2005.0 Fin 3.0 714.0 TA TA Y 172 38 0 0 0 0 NaN NaN NaN 0 11 2006 New Partial NaN
2903 2904 20 RL 88.0 11577 Pave NaN Reg Lvl AllPub Inside Gtl Timber Norm Norm 1Fam 1Story 9 5 2005 2006 Hip CompShg VinylSd VinylSd BrkFace 382.0 Ex TA PConc Gd TA Gd GLQ 1455.0 Unf 0.0 383.0 1838.0 GasA ... Y SBrkr 1838 0 0 1838 1.0 0.0 2 0 3 1 Ex 9 Typ 1 Gd Attchd 2005.0 Fin 3.0 682.0 TA TA Y 161 225 0 0 0 0 NaN NaN NaN 0 9 2006 New Partial NaN
2904 2905 20 NaN 125.0 31250 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Artery Norm 1Fam 1Story 1 3 1951 1951 Gable CompShg CBlock VinylSd None 0.0 TA Fa CBlock NaN NaN NaN NaN 0.0 NaN 0.0 0.0 0.0 GasA ... Y FuseA 1600 0 0 1600 0.0 0.0 1 1 3 1 TA 6 Mod 0 NaN Attchd 1951.0 Unf 1.0 270.0 Fa TA N 0 0 135 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2905 2906 90 RM 78.0 7020 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm Duplex SFoyer 7 5 1997 1997 Gable CompShg MetalSd MetalSd BrkFace 200.0 TA Gd PConc Gd TA Gd GLQ 1243.0 Unf 0.0 45.0 1288.0 GasA ... Y SBrkr 1368 0 0 1368 2.0 0.0 2 0 2 2 TA 8 Typ 0 NaN Attchd 1997.0 Fin 4.0 784.0 TA TA Y 0 48 0 0 0 0 NaN NaN NaN 0 11 2006 WD Normal NaN
2906 2907 160 RM 41.0 2665 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 2Story 5 6 1977 1977 Gable CompShg CemntBd CmentBd None 0.0 TA TA PConc Gd TA Mn Unf 0.0 Unf 0.0 264.0 264.0 GasA ... Y SBrkr 616 688 0 1304 0.0 0.0 1 1 3 1 TA 5 Typ 1 TA BuiltIn 1977.0 RFn 1.0 336.0 TA TA Y 141 0 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2907 2908 20 RL 58.0 10172 Pave NaN IR1 Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 7 1968 2003 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No ALQ 441.0 Unf 0.0 423.0 864.0 GasA ... Y SBrkr 874 0 0 874 1.0 0.0 1 0 3 1 TA 5 Typ 0 NaN Attchd 1968.0 RFn 1.0 288.0 TA TA Y 0 120 0 0 0 0 NaN NaN NaN 0 10 2006 WD Normal NaN
2908 2909 90 RL NaN 11836 Pave NaN IR1 Lvl AllPub Corner Gtl Mitchel Norm Norm Duplex 1Story 5 5 1970 1970 Gable CompShg Plywood Plywood None 0.0 TA TA CBlock TA TA No BLQ 149.0 Unf 0.0 1503.0 1652.0 GasA ... Y SBrkr 1652 0 0 1652 0.0 0.0 2 0 4 2 TA 8 Typ 0 NaN 2Types 1970.0 Unf 3.0 928.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 3 2006 WD Normal NaN
2909 2910 180 RM 21.0 1470 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs SFoyer 4 6 1970 1970 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock Gd TA Av GLQ 522.0 Unf 0.0 108.0 630.0 GasA ... Y SBrkr 630 0 0 630 1.0 0.0 1 0 1 1 TA 3 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 4 2006 WD Normal NaN
2910 2911 160 RM 21.0 1484 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 2Story 4 4 1972 1972 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock TA TA No Rec 252.0 Unf 0.0 294.0 546.0 GasA ... Y SBrkr 546 546 0 1092 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN Attchd 1972.0 Unf 1.0 253.0 TA Fa Y 0 0 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2911 2912 20 RL 80.0 13384 Pave NaN Reg Lvl AllPub Inside Mod Mitchel Norm Norm 1Fam 1Story 5 5 1969 1979 Gable CompShg Plywood Plywood BrkFace 194.0 TA TA PConc TA TA Av Rec 119.0 BLQ 344.0 641.0 1104.0 GasA ... Y SBrkr 1360 0 0 1360 1.0 0.0 1 0 3 1 TA 8 Typ 1 TA Attchd 1969.0 RFn 1.0 336.0 TA TA Y 160 0 0 0 0 0 NaN NaN NaN 0 5 2006 WD Normal NaN
2912 2913 160 RM 21.0 1533 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs 2Story 4 5 1970 1970 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock TA TA No Rec 408.0 Unf 0.0 138.0 546.0 GasA ... Y SBrkr 546 546 0 1092 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN CarPort 1970.0 Unf 1.0 286.0 TA TA Y 0 0 0 0 0 0 NaN NaN NaN 0 12 2006 WD Abnorml NaN
2913 2914 160 RM 21.0 1526 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs 2Story 4 5 1970 1970 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 546.0 546.0 GasA ... Y SBrkr 546 546 0 1092 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 34 0 0 0 0 NaN GdPrv NaN 0 6 2006 WD Normal NaN
2914 2915 160 RM 21.0 1936 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm Twnhs 2Story 4 7 1970 1970 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock TA TA No Unf 0.0 Unf 0.0 546.0 546.0 GasA ... Y SBrkr 546 546 0 1092 0.0 0.0 1 1 3 1 TA 5 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 0 0 0 0 0 0 NaN NaN NaN 0 6 2006 WD Normal NaN
2915 2916 160 RM 21.0 1894 Pave NaN Reg Lvl AllPub Inside Gtl MeadowV Norm Norm TwnhsE 2Story 4 5 1970 1970 Gable CompShg CemntBd CmentBd None 0.0 TA TA CBlock TA TA No Rec 252.0 Unf 0.0 294.0 546.0 GasA ... Y SBrkr 546 546 0 1092 0.0 0.0 1 1 3 1 TA 6 Typ 0 NaN CarPort 1970.0 Unf 1.0 286.0 TA TA Y 0 24 0 0 0 0 NaN NaN NaN 0 4 2006 WD Abnorml NaN
2916 2917 20 RL 160.0 20000 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam 1Story 5 7 1960 1996 Gable CompShg VinylSd VinylSd None 0.0 TA TA CBlock TA TA No ALQ 1224.0 Unf 0.0 0.0 1224.0 GasA ... Y SBrkr 1224 0 0 1224 1.0 0.0 1 0 4 1 TA 7 Typ 1 TA Detchd 1960.0 Unf 2.0 576.0 TA TA Y 474 0 0 0 0 0 NaN NaN NaN 0 9 2006 WD Abnorml NaN
2917 2918 85 RL 62.0 10441 Pave NaN Reg Lvl AllPub Inside Gtl Mitchel Norm Norm 1Fam SFoyer 5 5 1992 1992 Gable CompShg HdBoard Wd Shng None 0.0 TA TA PConc Gd TA Av GLQ 337.0 Unf 0.0 575.0 912.0 GasA ... Y SBrkr 970 0 0 970 0.0 1.0 1 0 3 1 TA 6 Typ 0 NaN NaN NaN NaN 0.0 0.0 NaN NaN Y 80 32 0 0 0 0 NaN MnPrv Shed 700 7 2006 WD Normal NaN
2918 2919 60 RL 74.0 9627 Pave NaN Reg Lvl AllPub Inside Mod Mitchel Norm Norm 1Fam 2Story 7 5 1993 1994 Gable CompShg HdBoard HdBoard BrkFace 94.0 TA TA PConc Gd TA Av LwQ 758.0 Unf 0.0 238.0 996.0 GasA ... Y SBrkr 996 1004 0 2000 0.0 0.0 2 1 3 1 TA 9 Typ 1 TA Attchd 1993.0 Fin 3.0 650.0 TA TA Y 190 48 0 0 0 0 NaN NaN NaN 0 11 2006 WD Normal NaN

2919 rows × 81 columns

In [ ]:
dataset_combined.head()
Out[ ]:
Id MSSubClass MSZoning LotFrontage LotArea Street Alley LotShape LandContour Utilities LotConfig LandSlope Neighborhood Condition1 Condition2 BldgType HouseStyle OverallQual OverallCond YearBuilt YearRemodAdd RoofStyle RoofMatl Exterior1st Exterior2nd MasVnrType MasVnrArea ExterQual ExterCond Foundation BsmtQual BsmtCond BsmtExposure BsmtFinType1 BsmtFinSF1 BsmtFinType2 BsmtFinSF2 BsmtUnfSF TotalBsmtSF Heating ... CentralAir Electrical 1stFlrSF 2ndFlrSF LowQualFinSF GrLivArea BsmtFullBath BsmtHalfBath FullBath HalfBath BedroomAbvGr KitchenAbvGr KitchenQual TotRmsAbvGrd Functional Fireplaces FireplaceQu GarageType GarageYrBlt GarageFinish GarageCars GarageArea GarageQual GarageCond PavedDrive WoodDeckSF OpenPorchSF EnclosedPorch 3SsnPorch ScreenPorch PoolArea PoolQC Fence MiscFeature MiscVal MoSold YrSold SaleType SaleCondition SalePrice
0 1 60 RL 65.0 8450 Pave NaN Reg Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 196.0 Gd TA PConc Gd TA No GLQ 706.0 Unf 0.0 150.0 856.0 GasA ... Y SBrkr 856 854 0 1710 1.0 0.0 2 1 3 1 Gd 8 Typ 0 NaN Attchd 2003.0 RFn 2.0 548.0 TA TA Y 0 61 0 0 0 0 NaN NaN NaN 0 2 2008 WD Normal 208500.0
1 2 20 RL 80.0 9600 Pave NaN Reg Lvl AllPub FR2 Gtl Veenker Feedr Norm 1Fam 1Story 6 8 1976 1976 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Gd TA Gd ALQ 978.0 Unf 0.0 284.0 1262.0 GasA ... Y SBrkr 1262 0 0 1262 0.0 1.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1976.0 RFn 2.0 460.0 TA TA Y 298 0 0 0 0 0 NaN NaN NaN 0 5 2007 WD Normal 181500.0
2 3 60 RL 68.0 11250 Pave NaN IR1 Lvl AllPub Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2001 2002 Gable CompShg VinylSd VinylSd BrkFace 162.0 Gd TA PConc Gd TA Mn GLQ 486.0 Unf 0.0 434.0 920.0 GasA ... Y SBrkr 920 866 0 1786 1.0 0.0 2 1 3 1 Gd 6 Typ 1 TA Attchd 2001.0 RFn 2.0 608.0 TA TA Y 0 42 0 0 0 0 NaN NaN NaN 0 9 2008 WD Normal 223500.0
3 4 70 RL 60.0 9550 Pave NaN IR1 Lvl AllPub Corner Gtl Crawfor Norm Norm 1Fam 2Story 7 5 1915 1970 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA BrkTil TA Gd No ALQ 216.0 Unf 0.0 540.0 756.0 GasA ... Y SBrkr 961 756 0 1717 1.0 0.0 1 0 3 1 Gd 7 Typ 1 Gd Detchd 1998.0 Unf 3.0 642.0 TA TA Y 0 35 272 0 0 0 NaN NaN NaN 0 2 2006 WD Abnorml 140000.0
4 5 60 RL 84.0 14260 Pave NaN IR1 Lvl AllPub FR2 Gtl NoRidge Norm Norm 1Fam 2Story 8 5 2000 2000 Gable CompShg VinylSd VinylSd BrkFace 350.0 Gd TA PConc Gd TA Av GLQ 655.0 Unf 0.0 490.0 1145.0 GasA ... Y SBrkr 1145 1053 0 2198 1.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 2000.0 RFn 3.0 836.0 TA TA Y 192 84 0 0 0 0 NaN NaN NaN 0 12 2008 WD Normal 250000.0

5 rows × 81 columns

In [ ]:
print(dataset_combined.isnull().sum())
Id                  0
MSSubClass          0
MSZoning            4
LotFrontage       486
LotArea             0
Street              0
Alley            2721
LotShape            0
LandContour         0
Utilities           2
LotConfig           0
LandSlope           0
Neighborhood        0
Condition1          0
Condition2          0
BldgType            0
HouseStyle          0
OverallQual         0
OverallCond         0
YearBuilt           0
YearRemodAdd        0
RoofStyle           0
RoofMatl            0
Exterior1st         1
Exterior2nd         1
MasVnrType         24
MasVnrArea         23
ExterQual           0
ExterCond           0
Foundation          0
BsmtQual           81
BsmtCond           82
BsmtExposure       82
BsmtFinType1       79
BsmtFinSF1          1
BsmtFinType2       80
BsmtFinSF2          1
BsmtUnfSF           1
TotalBsmtSF         1
Heating             0
HeatingQC           0
CentralAir          0
Electrical          1
1stFlrSF            0
2ndFlrSF            0
LowQualFinSF        0
GrLivArea           0
BsmtFullBath        2
BsmtHalfBath        2
FullBath            0
HalfBath            0
BedroomAbvGr        0
KitchenAbvGr        0
KitchenQual         1
TotRmsAbvGrd        0
Functional          2
Fireplaces          0
FireplaceQu      1420
GarageType        157
GarageYrBlt       159
GarageFinish      159
GarageCars          1
GarageArea          1
GarageQual        159
GarageCond        159
PavedDrive          0
WoodDeckSF          0
OpenPorchSF         0
EnclosedPorch       0
3SsnPorch           0
ScreenPorch         0
PoolArea            0
PoolQC           2909
Fence            2348
MiscFeature      2814
MiscVal             0
MoSold              0
YrSold              0
SaleType            1
SaleCondition       0
SalePrice        1459
dtype: int64
In [ ]:
plt.figure(figsize=(18,6))
plt.title('Heatmap of missing values')
sns.heatmap(dataset_combined.isnull(), yticklabels=False, cbar=False, cmap='viridis')
Out[ ]:
<matplotlib.axes._subplots.AxesSubplot at 0x7f0b61f63090>
In [ ]:
unique_values = []
for column in object_columns:
  unique_values.append(dataset_combined[column].unique().size)
plt.figure(figsize=(18,6))
plt.title('No. Unique values of Categorical Features')
plt.xticks(rotation=90)
sns.barplot(x=object_columns, y=unique_values)
Out[ ]:
<matplotlib.axes._subplots.AxesSubplot at 0x7f0b5ed89dd0>
In [ ]:
plt.figure(figsize=(18,36))
plt.title('Categorical Features: Distribution')
plt.xticks(rotation=90)
index = 1
for column in object_columns:
  y = dataset_combined[column].value_counts()
  plt.subplot(11,4,index)
  plt.xticks(rotation=90)
  sns.barplot(x=list(y.index), y=y)
  index +=1

Fill up missing values:¶

  • Drop the features 'Alley', 'Fence', and 'MiscFeature'.

  • Drop 'Utilities' feature, as all but one have the value 'AllPub'

  • All entries with missing 'FirePlaceQu' have 'Fireplaces' = 0. Hence fill missing values with 'NA'.

  • All but one entries with missing 'PoolQC' value have 'PoolArea' = 0. Use mode for missing value with non-zero PoolArea. Use 'NA' for the rest of the entries.

  • Basement features: Fill missing values with 'NA' or '0'.

  • Garage features: Fill missing values with 'NA' or '0'.

  • Remaining Integer and Real features: fill up missing values with mean of the corresponding feature.

  • Remaining Categorical features: fill up missing values with mode of the corresponding feature.

In [ ]:
dataset_combined.drop(columns='Id', inplace=True); print('Drop Id \n')
dataset_combined['MSZoning']    = dataset_combined['MSZoning'].fillna(dataset_combined['MSZoning'].mode()[0])
dataset_combined['LotFrontage'] = dataset_combined['LotFrontage'].fillna(dataset_combined['LotFrontage'].mean())
dataset_combined.drop(columns='Alley',inplace=True); print('Drop Alley \n')
Drop Id 

Drop Alley 

In [ ]:
#dataset_combined['Utilities'] = dataset_combined['Utilities'].fillna(dataset_combined['Utilities'].mode()[0])
print(dataset_combined['Utilities'].value_counts())
dataset_combined.drop(columns='Utilities', inplace=True); print('Drop Utilities \n')
AllPub    2916
NoSeWa       1
Name: Utilities, dtype: int64
Drop Utilities 

In [ ]:
dataset_combined['Exterior1st'] = dataset_combined['Exterior1st'].fillna(dataset_combined['Exterior1st'].mode()[0])
dataset_combined['Exterior2nd'] = dataset_combined['Exterior2nd'].fillna(dataset_combined['Exterior2nd'].mode()[0])
dataset_combined['MasVnrType']  = dataset_combined['MasVnrType'].fillna(dataset_combined['MasVnrType'].mode()[0])
dataset_combined['MasVnrArea']  = dataset_combined['MasVnrArea'].fillna(dataset_combined['MasVnrArea'].mean())
dataset_combined['Electrical']  = dataset_combined['Electrical'].fillna(dataset_combined['Electrical'].mode()[0])
dataset_combined['KitchenQual'] = dataset_combined['KitchenQual'].fillna(dataset_combined['KitchenQual'].mode()[0])
dataset_combined['Functional']  = dataset_combined['Functional'].fillna(dataset_combined['Functional'].mode()[0])
In [ ]:
#dataset_combined.loc[(dataset_combined['Fireplaces'] != 0) & (dataset_combined['FireplaceQu'].isnull()) ][['FireplaceQu','Fireplaces']]
dataset_combined['FireplaceQu'] = dataset_combined['FireplaceQu'].fillna('NA'); print('FirePlaceQu: Fill NA values for missing values \n')
FirePlaceQu: Fill NA values for missing values 

In [ ]:
dataset_combined.loc[(dataset_combined['PoolQC'].isnull()) & dataset_combined['PoolArea']>0][['PoolQC','PoolArea']]
dataset_combined.at[2599,'PoolQC'] = dataset_combined['PoolQC'].mode()[0]; print('PoolQC: Use mode for missing value with non-zero PoolAre \n')
dataset_combined['PoolQC'] = dataset_combined['PoolQC'].fillna('NA'); print('PoolQC: Use NA for remaining missing values \n')
PoolQC: Use mode for missing value with non-zero PoolAre 

PoolQC: Use NA for remaining missing values 

In [ ]:
dataset_combined['SaleType'].fillna(dataset_combined['SaleType'].mode()[0],inplace=True)
dataset_combined.drop(columns=['Fence','MiscFeature','SalePrice'],inplace=True); print('Drop Fence, MiscFeature and SalePrice\n')
Drop Fence, MiscFeature and SalePrice

In [ ]:
# Basement Features
#dataset_combined.loc[dataset_combined['BsmtQual'].isnull()][['BsmtQual','BsmtCond','BsmtExposure','BsmtFinType1','BsmtFinSF1','BsmtFinType2','BsmtUnfSF','TotalBsmtSF','BsmtFullBath','BsmtHalfBath']].head()
#dataset_combined.loc[dataset_combined['TotalBsmtSF'].isnull()][['BsmtQual','BsmtCond','BsmtExposure','BsmtFinType1','BsmtFinSF1','BsmtFinType2','BsmtFinSF2','BsmtUnfSF','TotalBsmtSF','BsmtFullBath','BsmtHalfBath']]
print('Fill missing values of Basement features with NA or 0 \n')
dataset_combined['BsmtQual'] = dataset_combined['BsmtQual'].fillna('NA')
dataset_combined['BsmtCond'] = dataset_combined['BsmtCond'].fillna('NA')
dataset_combined['BsmtExposure'] = dataset_combined['BsmtExposure'].fillna('NA')
dataset_combined['BsmtFinType1'] = dataset_combined['BsmtFinType1'].fillna('NA')
dataset_combined['BsmtFinType2'] = dataset_combined['BsmtFinType2'].fillna('NA')
Fill missing values of Basement features with NA or 0 

In [ ]:
dataset_combined['BsmtFinSF1'] = dataset_combined['BsmtFinSF1'].fillna(int(0))
dataset_combined['BsmtFinSF2'] = dataset_combined['BsmtFinSF2'].fillna(int(0))
dataset_combined['BsmtUnfSF'] = dataset_combined['BsmtUnfSF'].fillna(int(0))
dataset_combined['TotalBsmtSF'] = dataset_combined['TotalBsmtSF'].fillna(int(0))
dataset_combined['BsmtFullBath'] = dataset_combined['BsmtFullBath'].fillna(int(0))
dataset_combined['BsmtHalfBath'] = dataset_combined['BsmtHalfBath'].fillna(int(0))
In [ ]:
# Garage Features
# dataset_combined.loc[dataset_combined['GarageCond'].isnull()][['GarageType','GarageYrBlt','GarageFinish','GarageCars','GarageArea','GarageQual','GarageCond']].head()
print('Fill missing values of Garage features with NA or 0 \n')
dataset_combined['GarageType'] = dataset_combined['GarageType'].fillna('NA')
dataset_combined['GarageFinish'] = dataset_combined['GarageFinish'].fillna('NA')
dataset_combined['GarageCond'] = dataset_combined['GarageCond'].fillna('NA')
dataset_combined['GarageQual'] = dataset_combined['GarageQual'].fillna('NA')
dataset_combined['GarageCars'] = dataset_combined['GarageCars'].fillna(int(0))
dataset_combined['GarageArea'] = dataset_combined['GarageArea'].fillna(int(0))
dataset_combined['GarageYrBlt'] = dataset_combined['GarageYrBlt'].fillna(int(0))
Fill missing values of Garage features with NA or 0 

In [ ]:
dataset_combined.head()
Out[ ]:
MSSubClass MSZoning LotFrontage LotArea Street LotShape LandContour LotConfig LandSlope Neighborhood Condition1 Condition2 BldgType HouseStyle OverallQual OverallCond YearBuilt YearRemodAdd RoofStyle RoofMatl Exterior1st Exterior2nd MasVnrType MasVnrArea ExterQual ExterCond Foundation BsmtQual BsmtCond BsmtExposure BsmtFinType1 BsmtFinSF1 BsmtFinType2 BsmtFinSF2 BsmtUnfSF TotalBsmtSF Heating HeatingQC CentralAir Electrical 1stFlrSF 2ndFlrSF LowQualFinSF GrLivArea BsmtFullBath BsmtHalfBath FullBath HalfBath BedroomAbvGr KitchenAbvGr KitchenQual TotRmsAbvGrd Functional Fireplaces FireplaceQu GarageType GarageYrBlt GarageFinish GarageCars GarageArea GarageQual GarageCond PavedDrive WoodDeckSF OpenPorchSF EnclosedPorch 3SsnPorch ScreenPorch PoolArea PoolQC MiscVal MoSold YrSold SaleType SaleCondition
0 60 RL 65.0 8450 Pave Reg Lvl Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2003 2003 Gable CompShg VinylSd VinylSd BrkFace 196.0 Gd TA PConc Gd TA No GLQ 706.0 Unf 0.0 150.0 856.0 GasA Ex Y SBrkr 856 854 0 1710 1.0 0.0 2 1 3 1 Gd 8 Typ 0 NA Attchd 2003.0 RFn 2.0 548.0 TA TA Y 0 61 0 0 0 0 NA 0 2 2008 WD Normal
1 20 RL 80.0 9600 Pave Reg Lvl FR2 Gtl Veenker Feedr Norm 1Fam 1Story 6 8 1976 1976 Gable CompShg MetalSd MetalSd None 0.0 TA TA CBlock Gd TA Gd ALQ 978.0 Unf 0.0 284.0 1262.0 GasA Ex Y SBrkr 1262 0 0 1262 0.0 1.0 2 0 3 1 TA 6 Typ 1 TA Attchd 1976.0 RFn 2.0 460.0 TA TA Y 298 0 0 0 0 0 NA 0 5 2007 WD Normal
2 60 RL 68.0 11250 Pave IR1 Lvl Inside Gtl CollgCr Norm Norm 1Fam 2Story 7 5 2001 2002 Gable CompShg VinylSd VinylSd BrkFace 162.0 Gd TA PConc Gd TA Mn GLQ 486.0 Unf 0.0 434.0 920.0 GasA Ex Y SBrkr 920 866 0 1786 1.0 0.0 2 1 3 1 Gd 6 Typ 1 TA Attchd 2001.0 RFn 2.0 608.0 TA TA Y 0 42 0 0 0 0 NA 0 9 2008 WD Normal
3 70 RL 60.0 9550 Pave IR1 Lvl Corner Gtl Crawfor Norm Norm 1Fam 2Story 7 5 1915 1970 Gable CompShg Wd Sdng Wd Shng None 0.0 TA TA BrkTil TA Gd No ALQ 216.0 Unf 0.0 540.0 756.0 GasA Gd Y SBrkr 961 756 0 1717 1.0 0.0 1 0 3 1 Gd 7 Typ 1 Gd Detchd 1998.0 Unf 3.0 642.0 TA TA Y 0 35 272 0 0 0 NA 0 2 2006 WD Abnorml
4 60 RL 84.0 14260 Pave IR1 Lvl FR2 Gtl NoRidge Norm Norm 1Fam 2Story 8 5 2000 2000 Gable CompShg VinylSd VinylSd BrkFace 350.0 Gd TA PConc Gd TA Av GLQ 655.0 Unf 0.0 490.0 1145.0 GasA Ex Y SBrkr 1145 1053 0 2198 1.0 0.0 2 1 4 1 Gd 9 Typ 1 TA Attchd 2000.0 RFn 3.0 836.0 TA TA Y 192 84 0 0 0 0 NA 0 12 2008 WD Normal

Check that all missing values have been taken care of.

In [ ]:
print(dataset_combined.isnull().sum().sum())
0

Data Preprocessing¶

Import Onehot encoder to encode categorical features¶

In [ ]:
from sklearn.preprocessing import OneHotEncoder
In [ ]:
data = (dataset_combined.dtypes == 'object')
object_columns = list(data[data].index)
print("Categorical variables:")
print(object_columns)
print('No. of. categorical features: ',len(object_columns))
Categorical variables:
['MSZoning', 'Street', 'LotShape', 'LandContour', 'LotConfig', 'LandSlope', 'Neighborhood', 'Condition1', 'Condition2', 'BldgType', 'HouseStyle', 'RoofStyle', 'RoofMatl', 'Exterior1st', 'Exterior2nd', 'MasVnrType', 'ExterQual', 'ExterCond', 'Foundation', 'BsmtQual', 'BsmtCond', 'BsmtExposure', 'BsmtFinType1', 'BsmtFinType2', 'Heating', 'HeatingQC', 'CentralAir', 'Electrical', 'KitchenQual', 'Functional', 'FireplaceQu', 'GarageType', 'GarageFinish', 'GarageQual', 'GarageCond', 'PavedDrive', 'PoolQC', 'SaleType', 'SaleCondition']
No. of. categorical features:  39
In [ ]:
One_Hot_encoder = OneHotEncoder(sparse=False)
One_Hot_columns = pd.DataFrame(One_Hot_encoder.fit_transform(dataset_combined[object_columns]))
One_Hot_columns.index = dataset_combined.index
One_Hot_columns.columns = One_Hot_encoder.get_feature_names()
dataset_final = dataset_combined.drop(object_columns, axis=1)
dataset_final = pd.concat([dataset_final, One_Hot_columns], axis=1)
In [ ]:
dataset_final.head()
Out[ ]:
MSSubClass LotFrontage LotArea OverallQual OverallCond YearBuilt YearRemodAdd MasVnrArea BsmtFinSF1 BsmtFinSF2 BsmtUnfSF TotalBsmtSF 1stFlrSF 2ndFlrSF LowQualFinSF GrLivArea BsmtFullBath BsmtHalfBath FullBath HalfBath BedroomAbvGr KitchenAbvGr TotRmsAbvGrd Fireplaces GarageYrBlt GarageCars GarageArea WoodDeckSF OpenPorchSF EnclosedPorch 3SsnPorch ScreenPorch PoolArea MiscVal MoSold YrSold x0_C (all) x0_FV x0_RH x0_RL ... x31_Detchd x31_NA x32_Fin x32_NA x32_RFn x32_Unf x33_Ex x33_Fa x33_Gd x33_NA x33_Po x33_TA x34_Ex x34_Fa x34_Gd x34_NA x34_Po x34_TA x35_N x35_P x35_Y x36_Ex x36_Fa x36_Gd x36_NA x37_COD x37_CWD x37_Con x37_ConLD x37_ConLI x37_ConLw x37_New x37_Oth x37_WD x38_Abnorml x38_AdjLand x38_Alloca x38_Family x38_Normal x38_Partial
0 60 65.0 8450 7 5 2003 2003 196.0 706.0 0.0 150.0 856.0 856 854 0 1710 1.0 0.0 2 1 3 1 8 0 2003.0 2.0 548.0 0 61 0 0 0 0 0 2 2008 0.0 0.0 0.0 1.0 ... 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0
1 20 80.0 9600 6 8 1976 1976 0.0 978.0 0.0 284.0 1262.0 1262 0 0 1262 0.0 1.0 2 0 3 1 6 1 1976.0 2.0 460.0 298 0 0 0 0 0 0 5 2007 0.0 0.0 0.0 1.0 ... 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0
2 60 68.0 11250 7 5 2001 2002 162.0 486.0 0.0 434.0 920.0 920 866 0 1786 1.0 0.0 2 1 3 1 6 1 2001.0 2.0 608.0 0 42 0 0 0 0 0 9 2008 0.0 0.0 0.0 1.0 ... 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0
3 70 60.0 9550 7 5 1915 1970 0.0 216.0 0.0 540.0 756.0 961 756 0 1717 1.0 0.0 1 0 3 1 7 1 1998.0 3.0 642.0 0 35 272 0 0 0 0 2 2006 0.0 0.0 0.0 1.0 ... 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0
4 60 84.0 14260 8 5 2000 2000 350.0 655.0 0.0 490.0 1145.0 1145 1053 0 2198 1.0 0.0 2 1 4 1 9 1 2000.0 3.0 836.0 192 84 0 0 0 0 0 12 2008 0.0 0.0 0.0 1.0 ... 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0

5 rows × 287 columns

In [ ]:
# Check that the shapes are consistent

print('dataset_final shape:', dataset_final.shape)
print('training_data shape:', training_data.shape)
print('testing_data  shape:', testing_data.shape)

X_Train = pd.DataFrame(dataset_final[:1460])
X_Test  = pd.DataFrame(dataset_final[1460:])
Y_Train = training_data['SalePrice']

print('\nCheck that the datasets are consistent:\n')
print('X_train shape', X_Train.shape)
print('Y_train shape:', Y_Train.shape)
print('X_test shape:',  X_Test.shape)
dataset_final shape: (2919, 287)
training_data shape: (1460, 81)
testing_data  shape: (1459, 80)

Check that the datasets are consistent:

X_train shape (1460, 287)
Y_train shape: (1460,)
X_test shape: (1459, 287)

Model selection and prediction¶

In [ ]:
from sklearn.metrics import mean_absolute_error
from sklearn.model_selection import train_test_split
In [ ]:
# Split the training set into training and validation set

X_train, X_valid, Y_train, Y_valid = train_test_split(X_Train, Y_Train, train_size=0.8, test_size=0.2,random_state=0)
In [ ]:
from sklearn.ensemble import RandomForestRegressor

model_RFR = RandomForestRegressor()
model_RFR.fit(X_train, Y_train)
Y_pred = model_RFR.predict(X_valid)
print(mean_absolute_error(Y_valid, Y_pred))
17428.49544520548
In [ ]:
from sklearn.ensemble import GradientBoostingRegressor

model_GBR = GradientBoostingRegressor()
model_GBR.fit(X_train, Y_train)
Y_pred = model_GBR.predict(X_valid)
print(mean_absolute_error(Y_valid, Y_pred))
16952.79740567023
In [ ]:
from sklearn.linear_model import SGDRegressor

model_SGD = SGDRegressor()
model_SGD.fit(X_train, Y_train)
Y_pred = model_SGD.predict(X_valid)
print(mean_absolute_error(Y_valid, Y_pred))
5.745524413582746e+16
In [ ]:
import warnings
warnings.filterwarnings('ignore')

from xgboost import XGBRegressor

model_XGBR = XGBRegressor(learning_rate=0.03,n_estimators=200,objective='reg:squarederror')
model_XGBR.fit(X_train,Y_train)
Y_pred = model_XGBR.predict(X_valid)
print(mean_absolute_error(Y_valid, Y_pred))
17399.26773865582
In [ ]:
plt.figure()
plt.title('Comparison of Sale Price of Predicted and Actual values')
plt.scatter(Y_Train,model_RFR.predict(X_Train),label='Random Forest')
plt.scatter(Y_Train,model_XGBR.predict(X_Train),label='XGB')
plt.legend()
Out[ ]:
<matplotlib.legend.Legend at 0x7f0b47899c90>
In [ ]:
from sklearn.model_selection import GridSearchCV
model = XGBRegressor()

n_estimators   = [100, 200, 500]
learning_rates = [0.03,0.1,0.3]
objectives     = ['reg:squarederror']

# Define the grid of hyperparameters to search
hyperparameter_grid = {
    'n_estimators' : n_estimators,
    'learning_rate':learning_rates,
    'objective' : objectives
    }

grid_cv = GridSearchCV(estimator = model,
            param_grid = hyperparameter_grid,
            scoring = 'neg_mean_absolute_error',
            return_train_score = True)

grid_cv.fit(X_Train,Y_Train)
Out[ ]:
GridSearchCV(cv=None, error_score=nan,
             estimator=XGBRegressor(base_score=0.5, booster='gbtree',
                                    colsample_bylevel=1, colsample_bynode=1,
                                    colsample_bytree=1, gamma=0,
                                    importance_type='gain', learning_rate=0.1,
                                    max_delta_step=0, max_depth=3,
                                    min_child_weight=1, missing=None,
                                    n_estimators=100, n_jobs=1, nthread=None,
                                    objective='reg:linear', random_state=0,
                                    reg_alpha=0, reg_lambda=1,
                                    scale_pos_weight=1, seed=None, silent=None,
                                    subsample=1, verbosity=1),
             iid='deprecated', n_jobs=None,
             param_grid={'learning_rate': [0.03, 0.1, 0.3],
                         'n_estimators': [100, 200, 500],
                         'objective': ['reg:squarederror']},
             pre_dispatch='2*n_jobs', refit=True, return_train_score=True,
             scoring='neg_mean_absolute_error', verbose=0)
In [ ]:
grid_cv.best_score_
Out[ ]:
-15410.454291523973
In [ ]:
grid_cv.best_estimator_
Out[ ]:
XGBRegressor(base_score=0.5, booster='gbtree', colsample_bylevel=1,
             colsample_bynode=1, colsample_bytree=1, gamma=0,
             importance_type='gain', learning_rate=0.1, max_delta_step=0,
             max_depth=3, min_child_weight=1, missing=None, n_estimators=500,
             n_jobs=1, nthread=None, objective='reg:squarederror',
             random_state=0, reg_alpha=0, reg_lambda=1, scale_pos_weight=1,
             seed=None, silent=None, subsample=1, verbosity=1)
In [ ]:
Y_pred = grid_cv.predict(X_valid)
print(mean_absolute_error(Y_valid, Y_pred))
5902.788273223459
In [ ]:
regressor = grid_cv.best_estimator_
Y_pred = regressor.predict(X_valid)
print(mean_absolute_error(Y_valid, Y_pred))
5902.788273223459
In [ ]:
plt.figure()
plt.title('Comparison of Sale Price of Predicted and Actual values')
plt.scatter(Y_Train,model_RFR.predict(X_Train),label='Random Forest')
plt.scatter(Y_Train,model_XGBR.predict(X_Train),label='XGB')
plt.scatter(Y_Train,regressor.predict(X_Train),label='Best model')
plt.legend()
Out[ ]:
<matplotlib.legend.Legend at 0x7f0b6239ccd0>

Predicted Data¶

In [ ]:
Y_Pred = regressor.predict(X_Test)
In [ ]:
Y_Pred
Out[ ]:
array([126633.34, 168998.73, 181575.25, ..., 142767.14, 122064.92,
       228735.19], dtype=float32)
In [ ]:
Y_Pred.shape
Out[ ]:
(1459,)
In [ ]:
sub = pd.DataFrame()
sub['Id'] = df_Test['Id']
sub['SalePrice'] = Y_Pred
In [ ]:
sub.head()
Out[ ]:
Id SalePrice
0 1461 126633.343750
1 1462 168998.734375
2 1463 181575.250000
3 1464 189381.921875
4 1465 172626.390625
In [ ]:
sub.tail()
Out[ ]:
Id SalePrice
1454 2915 80406.585938
1455 2916 74899.859375
1456 2917 142767.140625
1457 2918 122064.921875
1458 2919 228735.187500
In [ ]:
sub.to_csv('/content/drive/MyDrive/Project - YHills - House Price Prediction/Output/predictions.csv')